-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm Test.html
85 lines (57 loc) · 1.91 KB
/
Form Test.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="1000000">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
</head>
<link rel="stylesheet" href="style.css">
<body>
<form action="Elements/Page 2.html" method="post">
<label for="fname">First Name Nigga</label>
<input required type="text" id="fname" name="fname" placeholder="John">
<div>
</div>
<br>
<label for="fname">Last Name Nigga</label>
<input required type="text" id="fname" name="fname" placeholder="Doe">
<br>
<div>
</div>
<br>
<div>
<label for="Password">Password <input required type="password" id="Pswd" name="Password" placeholder="Enter your assssword" maxlength="8"></label>
<br>
</div>
<br>
<label for="email">Email <input required type="email" id="email" name="email"placeholder="email"></label>
<div>
<br>
<label for="tele">Telephone </label><input type="tele" required id="tele" name="tele" placeholder="+1 (123) 456-789">
<br>
<br>
<LABEl for="Birthday">Birthday </LABEl><input required type="date" id="Birthday" name="Birthday">
</div>
<br>
<div>
<label for="ref">Title:</label>
<label>Mr.</label>
<input required type="radio" id="ref" name="ref">
<label>Mrs.</label>
<input required type="radio" id="ref" name="ref">
<label>Ms.</label>
<input required type="radio" id="ref" name="ref">
<div>
</div>
<br>
<label for="payment">payment</label>
<select required id="payment" name="payment">
<option value="visa">visa</option>
<option value="mastercard">mastercard</option>
<option value="giftcard">giftcard</option>
<input type="reset">
<input type="submit">
</form>
</body>
</html>