-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (45 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="https://cdn3.iconfinder.com/data/icons/line-icons-set/128/1-12-512.png" type="image/x-icon">
<title>Credit Card Validator</title>
<script src="https://kit.fontawesome.com/4d799c321f.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<div class="container">
<div data-cart-info>
<h1 class="mdc-typography--headline4">
<span class="material-icons">
<i class="fab fa-opencart"></i>
</span>
<span data-bill></span>
</h1>
</div>
<div data-credit-card class="mdc-card mdc-card--outlined">
<div class="mdc-card__primary-action">
<div class="fit-card-image">
<img data-card-type src="https://placehold.it/120x60.png?text=Card">
</div>
<br>
<br>
<div data-cc-digits>
<input type="text" size="4" placeholder="----">
<input type="text" size="4" placeholder="----">
<input type="text" size="4" placeholder="----">
<input type="text" size="4" placeholder="----">
</div>
<div data-cc-info>
<input type="text" size="20" placeholder="Name Surname">
<input type="text" size="6" placeholder="MM/YY">
</div>
</div>
</div>
<button data-pay-btn class="mdc-button">Pay Now</button>
</div>
<script src="script/main.js"></script>
</body>
</html>