This repository has been archived by the owner on Sep 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform_1.html
68 lines (68 loc) · 2.33 KB
/
form_1.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title></title>
<link rel="stylesheet" href="css/style_1.css" />
</head>
<body>
<div class="wrapper">
<div class="title">Registration Form</div>
<div class="form">
<div class="input_field">
<label for="firstname">First Name</label>
<input type="text" id="firstname" class="input" />
</div>
<div class="input_field">
<label for="lastname">Last Name</label>
<input type="text" id="lastname" class="input" />
</div>
<div class="input_field">
<label for="password">Password</label>
<input type="password" id="password" class="input" />
</div>
<div class="input_field">
<label for="confirmpassword">Confirm Password</label>
<input type="password" id="confirmpassword" class="input" />
</div>
<div class="input_field">
<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="input_field">
<label for="email">Email Address</label>
<input type="email" id="email" class="input" />
</div>
<div class="input_field">
<label for="phonenumber">Phone Number</label>
<input type="number" id="phonenumber" class="input" />
</div>
<div class="input_field">
<label for="address">Address</label>
<textarea class="textarea" id="address"></textarea>
</div>
<div class="input_field">
<label for="postalcode">Postal Code</label>
<input type="text" id="postalcode" class="input" />
</div>
<div class="input_field terms">
<label class="check">
<input type="checkbox" />
<span class="checkmark"></span>
</label>
<p>Agreed to terms and conditions</p>
</div>
<div class="input_field">
<input type="submit" value="Register" class="btn" />
</div>
</div>
</div>
</body>
</html>