-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
160 lines (131 loc) · 5.79 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Cabin" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond|Inconsolata" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Crimson+Text|Raleway" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet">
</head>
<body>
<!-- **************************************
***********START LANDING PAGE*************
**************************************-->
<section class="landing-page-container">
<div class="landing-page-wrapper">
<h1 id="landing-page-heading">Test Your Knowledge</h1>
<div class="landing-inputs-wrapper">
<input type="text" id="firstname" class="fullname" placeholder="Enter Your Firstname">
<input type="text" id="lastname" class="fullname" placeholder="Enter Your Lastname">
<button id="start-quiz-btn">Start Quiz</button>
</div>
</div>
</section>
<!-- ************************************
***********END LANDING PAGE*************
**************************************-->
<!-- *************************************
***********START ADMIN SECTION***********
**************************************-->
<section class="admin-panel-container">
<div class='admin-panel-wrapper'>
<div class="header">
<h2>Add Questions</h2>
<button id="admin-logout-btn">Logout</button>
</div>
<div class="forms-wrapper">
<button id="question-update-btn">Update</button>
<button id="question-delete-btn">Delete</button>
<textarea id="new-question-text" cols="" rows="" placeholder="New Question"></textarea>
<div class="admin-options-container">
<div class="admin-option-wrapper">
<input type="radio" class="admin-option-0" name="answer" value="0">
<input type="text" class="admin-option admin-option-0" value="">
</div>
<div class="admin-option-wrapper">
<input type="radio" class="admin-option-1" name="answer" value="1">
<input type="text" class="admin-option admin-option-1" value="">
</div>
</div>
<button id="question-insert-btn">Insert</button>
</div>
<button id="questions-clear-btn">Clear List</button>
</div>
<div class="results-list-container">
<div class="clear">
<h2>Results</h2>
<button id="results-clear-btn">Clear Results</button>
</div>
<div class="results-list-wrapper">
<!--
<p class="person person-1"><span class="person-1">Nick Smith - 5 Points</span>
<button id="delete-result-btn_1" class="delete-result-btn">Delete</button></p>
-->
</div>
</div>
<div class="inserted-questions-wrapper">
<!-- <p><span>1. Question Text</span><button id="question-1">Edit</button></p> -->
</div>
</section>
<!-- *************************************
***********END ADMIN SECTION***********
**************************************-->
<!-- *************************************
***********START QUIZ SECTION************
**************************************-->
<section class="quiz-container">
<div class="quiz-wrapper">
<h2 id="asked-question-text">Why do you want to become developer?</h2>
<div class="instant-answer-container">
<img id="emotion" src="images/happy.png">
<div id="instant-answer-wrapper">
<p id="instant-answer-text">This is a correct answer</p>
<button id="next-question-btn">Next</button>
</div>
</div>
<div class="quiz-options-wrapper">
<div class="choice-0"><span class="choice-0">A</span>
<p class="choice-0">test1</p>
</div>
<div class="choice-1"><span class="choice-1">B</span>
<p class="choice-1">test2</p>
</div>
<div class="choice-2"><span class="choice-2">C</span>
<p class="choice-2">test3</p>
</div>
<div class="choice-3"><span class="choice-3">D</span>
<p class="choice-3">test4</p>
</div>
</div>
</div>
<!--***********PROGRESS BAR***********-->
<div class="progressBar">
<p id="progress">2/20</p>
<progress value="30" max="100"></progress>
</div>
</section>
<!-- ************************************
***********END QUIZ SECTION*************
**************************************-->
<!-- **************************************
***********START FINAL RESULT PAGE********
**************************************-->
<section class="final-result-container">
<div class="final-result-wrapper">
<div class="final-result">
<button id="final-logout-btn">Logout</button>
<h2 id="final-score-text">Nick Doe -- 56</h2>
</div>
</div>
</section>
<!-- *************************************
***********END FINAL RESULT PAGE*********
**************************************-->
</body>
<script src="app.js"></script>
</body>
</html>