2017-07-17 06:47:04 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Form Autofill Demo: Basic Credit Card @autocomplete</title>
|
|
|
|
<link rel="stylesheet" href="css/base.css"/>
|
2017-11-28 11:55:18 +03:00
|
|
|
<script type="text/javascript" src="base.js"></script>
|
2017-07-17 06:47:04 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Form Autofill Demo: Basic Credit Card @autocomplete</h1>
|
|
|
|
|
|
|
|
<form class="alignedLabels">
|
|
|
|
<label>Name: <input autocomplete="cc-name"></label>
|
2017-07-17 11:45:20 +03:00
|
|
|
<label>Card Number: <input autocomplete="cc-number"></label>
|
2017-07-17 06:47:04 +03:00
|
|
|
<label>Expiration month: <input autocomplete="cc-exp-month"></label>
|
|
|
|
<label>Expiration year: <input autocomplete="cc-exp-year"></label>
|
|
|
|
<label>CSC: <input autocomplete="cc-csc"></label>
|
|
|
|
<p>
|
|
|
|
<input type="submit" value="Submit">
|
|
|
|
<button type="reset">Reset</button>
|
|
|
|
</p>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|