-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
30 lines (30 loc) · 1.21 KB
/
signup.html
File metadata and controls
30 lines (30 loc) · 1.21 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
<!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>Sign In</title>
</head>
<body>
<h1>Sign Up</h1>
<form action="">
<label for="u_name">User Name:</label> <br>
<input type="text" name = "u_name", id= "u_name"> <br>
<label for="Gender">Gender: </label> <br>
<input type="radio" id="m_gender" name="gender" value="M">
<label for="male">M</label><br>
<input type="radio" id="f_gender" name="gender" value="F">
<label for="female">F</label><br>
<label for="mail">E-mail ID: </label> <br>
<input type="email" name="mail" id="mail"> <br>
<label for="phone">Phone Number (10 digits): </label> <br>
<input type="tel" name="phone" id="phone" pattern="[0-9]{10}"> <br>
<label for="pass">Password: </label> <br>
<input type="password" name="pass" id="pass"> <br>
<label for="r_pass">Re-Enter Password</label> <br>
<input type="password" name="r_pass" id="r_pass">
<input type="submit" value="Sign Up">
</form>
</body>
</html>