-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
39 lines (38 loc) · 1.49 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="signstyle.css">
</head>
<body>
<!--<div class="box2">
<h3>Instructions</h3>
</div>-->
<center> <h1>QUIZZ APP</h1>
<h1>SIGN UP PAGE</h1>
</center>
<div class="main">
<form action="" class="signup">
<fieldset class="feild">
<legend>USERDATA </legend>
<label for="input1">NAME:
<input type="text" class="text" id="input1"placeholder='NAME'> <br></label>
<label for="input2">FATHER'S NAME:
<input type="text" class="text" id="input2" placeholder='FATHER NAME'> <br> </label>
<label for="input3">EMAIL:
<input type="text" class="text" id="input3"placeholder=EMAIL> <br></label>
<label for="input4">INSTITUTION:
<input type="text" class="text" id="input4" placeholder=INSTITUTION> <br></label>
<input type="button" class="btn1" value="SIGN UP" onclick="sign()">
</fieldset>
</form>
</div>
<div class="box1">
<h3>Instructions</h3>
<p>First you have to fill the form and then as soon as you click the sigh button the quiz will start with the timer </p>
<p>quiz contains 6 questions each questions carry 10 marks, below 30 will be declared as failed attempt all questions</p>
</div>
<script src="signapp.js"></script>
</body>
</html>