-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
56 lines (56 loc) · 2.23 KB
/
registration.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./index.html">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="./index.html">HOME</a></li>
<li><a href="./about.html">ABOUT</a></li>
<li><a href="./registration.html">REGISTRATION</a></li>
<li><a href="./login.html">LOGIN</a></li>
<li><a href="./contact.html">CONTACT</a></li>
</ul>
</nav>
</header>
<main>
<div class="reg">
<h1>Register Here</h1>
<form action="">
<label for="fname">First Name</label>
<input type="text" name="" id="" required> <br>
<label for="lname">Last Name</label>
<input type="text" name="" id="" required> <br>
<label for="phone">Phone Number</label>
<input type="tel" name="" id="" required> <br>
<label for="gender">Gender</label>
<select name="gender" id="gender" required> <br>
<option value="none" selected>Gender</option>
<option value="male">Male</option>
<option value="female">Female</option>
</select> <br> <hr>
<label for="country">Country</label>
<input type="text" name="" id="" required> <br>
<label for="state">State/Province</label>
<input type="text" name="" id="" required> <br>
<label for="email">Email</label>
<input type="email" name="" id="" required> <br>
<label for="password">Password</label>
<input type="password" name="" id="" required> <br>
<label for="confirm">Confirm Password</label>
<input type="password" name="" id="" required> <br>
<button type="submit">Create an account</button>
</form>
</div>
</main>
<footer>
</footer>
</body>
</html>