-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbasic.html
28 lines (27 loc) · 1.04 KB
/
basic.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Form Autofill Demo: Basic @autocomplete</title>
<link rel="stylesheet" href="css/base.css"/>
<script type="text/javascript" src="base.js"></script>
</head>
<body>
<h1>Form Autofill Demo: Basic @autocomplete</h1>
<form class="alignedLabels">
<label>Name: <input autocomplete="name"></label>
<label>Organization: <input autocomplete="organization"></label>
<label>Street Address: <input autocomplete="street-address"></label>
<label>Address Level 2: <input autocomplete="address-level2"></label>
<label>Address Level 1: <input autocomplete="address-level1"></label>
<label>Postal Code: <input autocomplete="postal-code"></label>
<label>Country (2-digit abbreviation): <input autocomplete="country" maxlength="2"></label>
<label>Email: <input autocomplete="email"></label>
<label>Telephone: <input autocomplete="tel"></label>
<p>
<input type="submit" value="Submit">
<button type="reset">Reset</button>
</p>
</form>
</body>
</html>