forked from RudranshBarate/Aiop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign.html
76 lines (72 loc) · 2.09 KB
/
sign.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
<link rel="stylesheet" href="style/sign.css">
<link rel="icon" href="images/logo.png" type="icon.png">
</head>
<body>
<form>
<div class="wrapper">
<div class="form">
<div class="inputfield">
<label>First Name</label>
<input type="text" class="input">
</div>
<div class="inputfield">
<label>Last Name</label>
<input type="text" class="input">
</div>
<div class="inputfield">
<label>Password</label>
<input type="password" class="input" >
</div>
<div class="inputfield">
<label>Confirm Password</label>
<input type="password" class="input" >
</div>
<div class="inputfield">
<label>Gender</label >
<div class="custom_select">
<select >
<option value="">Select</option>
<option value="male">Male</option>
<option value="female">Female</option>
</select>
</div>
</div>
<div class="inputfield">
<label>Email Address</label>
<input type="email" class="input" >
</div>
<div class="inputfield">
<label>Phone Number</label>
<input type="number" class="input">
</div>
<div class="inputfield">
<label>Address</label>
<textarea class="textarea"></textarea>
</div>
<div class="inputfield">
<label>Postal Code</label>
<input type="number" class="input">
</div>
<div class="inputfield terms">
<label class="check">
<input type="checkbox">
<span class="checkmark"></span>
</label>
<p>Agreed to terms and conditions</p>
</div>
</form>
<form action="login.html" >
<div class="inputfield">
<input type="submit" value="Sign Up" class="btn" >
</div>
</form>
</div>
</div>
</body>
</html>