-
Notifications
You must be signed in to change notification settings - Fork 6
/
signup.html
31 lines (31 loc) · 1.2 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles/index.css" />
<link rel="stylesheet" href="./styles/signup.css">
<title>Signup...</title>
</head>
<body>
<div id="nav"></div>
<form id="form" action="">
<h3>Please Signup.....</h3>
<input id="username" type="text" placeholder="Enter Name">
<input id="email" type="email" placeholder="Enter Email">
<input id="password" type="password" placeholder="Enter Password">
<input id="mobile" type="number" placeholder="Enter Mobile Number">
<select id="gender" name="" id="">
<option value="">Select Gender</option>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="others">Others</option>
</select>
<input id="submit" type="submit" value="signup">
</form>
<div id="footer"></div>
</body>
<script src="./scripts/footer.js"></script>
<script src="./scripts/navbar.js" type="module"></script>
<script src="./scripts/signup.js" type="module"></script>
</html>