-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegistration.html
More file actions
50 lines (40 loc) · 1.45 KB
/
Copy pathRegistration.html
File metadata and controls
50 lines (40 loc) · 1.45 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration Form</title>
<link rel="stylesheet" href="Form.css">
</head>
<body>
<div class="main">
<h1> Register </h1>
<p>please fill to register with us...</p>
<form action="#">
<hr>
<label for="fn">First Name</label>
<input type="text" placeholder="FIRST NAME" name="fn" required>
<label for="ln">Last Name</label>
<input type="text" placeholder="LAST NAME" name="ln" required>
<label for="email">Email</label>
<input type="email" name="email" placeholder="Register123@gmail.com" required>
<label for="psw">Password</label>
<input type="password" name="psw" placeholder="Enter Password" required>
<label for="cpsw">Password</label>
<input type="password" name="cpsw" placeholder="Confirm Password" required >
<label for="gender">Gender</label>
<div>
<input type="radio" name="gender">Male
<input type="radio"name="gender">Female
</div>
<label for="DOB">Date of Birth</label>
<input type="date" name="DOB" required>
<hr>
<button type="submit" class="btn">Register</button>
<br>
<a href="Registration.html">Register</a> /
<a href="Login.html">Login</a>
</form>
</div>
</body>
</html>