-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.html
More file actions
36 lines (30 loc) · 1.23 KB
/
checkout.html
File metadata and controls
36 lines (30 loc) · 1.23 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lacquer&family=Rubik+Distressed&display=swap" rel="stylesheet">
<title>Check out</title>
</head>
<body>
<header>
</header>
<h2>➡ Your Selected Items:</h2><br>
<div id="checkout-items"></div>
<h2>➡ Select Payment Method:</h2><br>
<form id="payment-form">
<input type="radio" id="credit" name="payment" value="Credit Card" checked>
<label for="credit">Credit Card</label><br>
<input type="radio" id="paypay" name="payment" value="PayPay">
<label for="paypay">PayPay</label><br>
<input type="radio" id="cash" name="payment" value="Cash">
<label for="cash">Cash</label><br><br>
<button type="button" id="confirm-payment">Confirm Payment </button>
</form>
<button id="btnback" class="btnback">Back ↩</button>
<script src="app.js"></script>
</body>
</html>