-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
41 lines (38 loc) · 1.14 KB
/
app.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
<!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" />
<title>Mini App</title>
</head>
<body>
<!-- your HTML goes here -->
<div data-cart-info>
<h1 class="mdc-typography--headline4">
<span class="material-icons">shopping_cart</span>
<span data-bill></span>
</h1>
</div>
<div data-credit-card class="mdc-card mdc-card--outlined">
<div class="mdc-card__primary-action">
<img data-card-type src="https://placehold.it/120x60.png?text=Card">
<div data-cc-digits>
<input type="text" placeholder="----" size="4"/>
<input type="text" placeholder="----" size="4"/>
<input type="text" placeholder="----" size="4"/>
<input type="text" placeholder="----" size="4"/>
</div>
<div data-cc-info>
<input type="text" placeholder="Name Surname" size="20"/>
<input type="text" placeholder="MM/YY" size="6"/>
</div>
</div>
</div>
<button data-pay-btn class="mdc-button">
Pay Now
</button>
<script src="app.js"></script>
</body>
</html>