-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
53 lines (53 loc) · 1.96 KB
/
forms.html
File metadata and controls
53 lines (53 loc) · 1.96 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
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Document</title>
</head>
<body>
<form action="#">
<div>
<label for="form-email">Email</label>
<input type="email" id="form-email" name="email" />
<label for="form-pass">Password</label>
<input type="password" id="form-pass" name="pass" />
</div>
<div>
<label for="form-name">Name and surname</label>
<input type="text" id="form-name" name="name" />
<label for="form-dob">Date of birth</label>
<input type="date" id="form-dob" name="dob" />
<label for="form-tel">Phone number</label>
<input type="tel" id="form-tel" name="tel" />
</div>
<div>
<label for="form-plan">Plans</label>
<select id="form-plan" name="plan">
<option value="0">Free</option>
<optgroup label="Monthly">
<option value="4">4#/month</option>
<option value="6">6#/month</option>
<option value="10">10#/month</option>
</optgroup>
</select>
<label for="form-pro">PRO plan</label>
<input id="form-pro" name="pro" type="checkbox" />
</div>
<div>
<label for="form-cc">Credit card number</label>
<input id="form-cc" name="cc" type="text" maxlength="19" />
<label for="form-cvc">CVC</label>
<input id="form-cvc" name="cvc" type="text" maxlength="4" />
<label for="form-exp">Expiration date</label>
<input id="form-exp" name="exp" type="date" maxlength="7" />
<label for="form-address">Address</label>
<input type="text" id="form-address" name="address" />
</div>
</form>
</body>
</html>