-
Notifications
You must be signed in to change notification settings - Fork 1
/
create.html
97 lines (95 loc) · 3.23 KB
/
create.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
<!DOCTYPE html>
<html lang="en">
<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>Create Quiz</title>
<link rel="stylesheet" href="./assets/css/create.css" />
</head>
<body>
<!-- header -->
<header class="header-white">
<nav class="header-white__nav">
<div class="header-white__nav__links">
<a href="./index.html">Home</a>
<a href="./Explore.html">Explore</a>
<a href="./about.html">About</a>
<div id="marker"></div>
</div>
</nav>
<div class="header-white__buttons" id="loginDiv">
<a href="./#.html" class="header-white__buttons__login">Log in</a>
<a href="./#.html" class="header-white__buttons__#">#</a>
</div>
<div id="user">
<h1 id="userEmail"></h1>
<div class="userMenu">
<a href="./create.html">Create a Quiz</a>
<a href="#" id="logOut">Log Out</a>
</div>
<div></div>
</div>
<div class="header-white__hamburger" id="hamburger"></div>
<div id="ham-menu">
<nav class="header-white__nav ham">
<div class="header-white__nav__links">
<a href="./index.html">Home</a>
<a href="./Explore.html">Explore</a>
<a href="./about.html">About</a>
<div id="marker"></div>
</div>
</nav>
</div>
</header>
<!-- create quiz section -->
<section class="create-quiz">
<div class="quiz__section">
<div class="question-inner">
<div id="questionPanel">
<div class="title">
<label>Title</label>
<input type="text" id="title"/>
</div>
<div class="question">
<label>Number of Questions</label>
<select name="ques" id="selectQues">
<option value="">Select</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</div>
</div>
<div>
<button
id="nextButton"
disabled="true"
onclick="createQuestion()"
>
Next
</button>
<button id="save" style="display: none;">Save</button></div>
<button id="finish" disabled style="display: none;">Finish</button></div>
</div>
</div>
</div>
</section>
<footer class="footer">
<ul>
<li><a href="#">Terms and Services</a></li>
<li><a href="#">Privacy & Policy</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Help Center</a></li>
<li><a href="#">About Us</a></li>
</ul>
<p>© 2021 Quiz Time Inc.</p>
</footer>
</body>
<script type="module" src="./assets/js/main.js"></script>
<script type="text/javascript" src="./assets/js/create.js"></script>
<script type="module" src="./assets/js/sendData.js"></script>
</html>