-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (39 loc) · 1.52 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="HandheldFriendly" content="True">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimal-ui">
<title>Scan credit card information</title>
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="css/index.css">
<body>
<div class="box">
<header class="header">
<img class="logo" src="assets/logo.png" alt="Logo Crucero">
</header>
<form class="form" action="/" method="POST">
<fieldset>
<div class="fieldLine">
<label for="holdername">Name on card</label>
<input type="text" id="holdername" placeholder="Name on card" name="holdername" required>
</div>
<div class="fieldLine">
<label for="card">Credit Card Number</label>
<input type="text" id="card" placeholder="Credit card number" name="card" required>
</div>
<div class="fieldLine">
<label for="month">Expiration Date</label>
<input id="month" type="text" placeholder="MM" name="month" required>
<input id="year" type="text" placeholder="YYYY" name="year" required>
</div>
</fieldset>
<div class="form-action">
<button type="submit" class="btn">Continue</button>
</div>
</form>
</div>
</body>
</html>