-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
36 lines (36 loc) · 883 Bytes
/
signup.html
File metadata and controls
36 lines (36 loc) · 883 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Signup form</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<div class="box">
<h2>Signup</h2>
<form>
<div class="inputbox ">
<input type="text" name="" required="" >
<label>First Name</label>
</div>
<div class="inputbox">
<input type="text" name="" required="" >
<label>Last Name</label>
</div>
<div class="inputbox">
<input type="text" name="" required="" >
<label>E-mail id</label>
</div>
<div class="inputbox">
<input type="password" name="" required="" >
<label>Enter Password</label>
</div>
<div class="inputbox">
<input type="password" name="" required="" >
<label>Re-Enter Password</label>
</div>
<input type="submit" name="" value="Submit">
</form>
</div>
</body>
</html>