-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignup.html
More file actions
46 lines (42 loc) · 1.35 KB
/
Signup.html
File metadata and controls
46 lines (42 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sign UP</title>
</head>
<body>
background-image:href="C:\Users\NilMeet\OneDrive\Desktop\Photos\NilaMeet\00.jpg"
<!-- Use GET, not POST -->
<h1><em>Hello welcome to new page<em></h1>
<form method = "GET">
First Name: <input type="text" name="firstname"><br>
last Name: <input type="text" name="Lastname"><br>
Email: <input type="email" name="email" required><br>
Password: <input type="password" min="5"required><br>
Birthday: <input type="date" name="birthday"><br>
Gender:<br>
<input type="radio" name="gender" value="Male">Male<br>
<input type="radio" name="gender" value="Female">Female<br>
<input type="radio" name="gender" value="Other">Other<br>
pets:<br>
<input type="checkbox" name="cat">Cat<br>
<input type="checkbox" name="Dog">Dog<br>
cars:
<select name="cars">
<option value="volvo" name="volvo">Volvo</option>
<option value="Audi" name="Audi">Audi</option>
</select><br>
<input type="Submit" value="Register">
<input type="Reset">
</form>
<a href="C:\Users\NilMeet\OneDrive\Desktop\HTML\Index.html">
<Strong>Go Back</Strong>
</body>
</html>
?firstname=Nilam&
Lastname=Bhuva&
email=abc%40gmail.com&
birthday=2022-09-09&
gender=on&
Dog=on