-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
81 lines (67 loc) · 2.56 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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="cleartype" content="on">
<meta name="MobileOptimized" content="320">
<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">
<title>Mango Menubar</title>
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/3.0.2/normalize.css">
<link rel="stylesheet" href="css/index.css">
<body>
<header class="menubar-header">
<h1 class="menubar-header-title">Mango Tokens</h1>
</header>
<main class="menubar-main">
<form id="form" method="POST">
<fieldset>
<div class="field">
<label for="key">API Key</label>
<input type="text" id="key" name="key" required>
</div>
<div class="field">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="field">
<label for="amount">Amount</label>
<input type="text" id="amount" name="amount" required>
</div>
<div class="field">
<label for="holdername">Card holdername</label>
<input type="text" id="holdername" required>
</div>
<div class="field">
<label for="card">Card Number</label>
<input type="number" id="card" maxlength="16" required>
</div>
<div class="field">
<label for="type">Card Type</label>
<select id="type">
<option value="visa">Visa</option>
<option value="amex">American Express</option>
</select>
</div>
<div class="field">
<label for="month">Expiration Month</label>
<input type="number" id="month" maxlength="2" required>
</div>
<div class="field">
<label for="year">Expiration Year</label>
<input type="number" id="year" maxlength="4" required>
</div>
<div class="field">
<label for="ccv">Security Code</label>
<input type="number" id="ccv" required>
</div>
</fieldset>
<input type="submit" class="btn" value="Create token">
</form>
</main>
<footer class="menubar-footer">with <span class="heart">❤</span> by Mango</footer>
<script src="https://js.getmango.com/v1/mango.js"></script>
<script src="js/index.js"></script>
</body>
</html>