-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (50 loc) · 1.95 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz App</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/x-icon" href="quiz.png">
</head>
<body>
<h2 id="name-tag"style="display: none;">Name:</h2>
<div class="container">
<h1>Quiz App</h1>
<div id="log">
<label for="username">Enter Username:</label>
<input type="text" required id="username"> <br><br>
<label for="password">Enter Password:</label>
<input type="password" required id="password"> <br>
<button id="login-button">Log in</button><br>
<h4>Type in 7 in the input spaces to bypass login</h4>
<p>© Cardinal <span id="date"></span></p>
</div>
<div id="ready" style="display: none;">
<h2>Click 'Start' whenever you're ready</h2>
</div>
<div id="quiz">
<h2 id="question"></h2>
<div id="options" class="hidden">
<input type="radio" name="option" value="1" id="option1"><label for="option1" id="option1_label"></label><br>
<input type="radio" name="option" value="2" id="option2"><label for="option2" id="option2_label"></label><br>
<input type="radio" name="option" value="3" id="option3"><label for="option3" id="option3_label"></label><br>
<input type="radio" name="option" value="4" id="option4"><label for="option4" id="option4_label"></label><br>
</div>
<button id="start" style="display: none;">Start</button>
<button id="previous" style="display:none;">Previous</button>
<button id="next" style="display:none;">Next</button>
<button id="submit" style="display:none;">Submit</button>
<p id="timer"></p>
</div>
<div id="result" style="display:none;">
<h2>Result</h2>
<p>Your score is: <span id="score"></span></p>
</div>
</div>
<script src="script.js"></script>
<script src="Login.js"></script>
<script src="shuffle.js"></script>
</body>
</html>