-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcheckout.html
More file actions
42 lines (41 loc) · 1.38 KB
/
Copy pathcheckout.html
File metadata and controls
42 lines (41 loc) · 1.38 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
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Checkout Page</title>
<link rel="stylesheet" href="/style/addtocart.css">
<link rel="stylesheet" href="/style/checkout.css">
</head>
<body>
<div id="navbar">
<div id="nav-1">
<img id="logo" src="/logo.png" alt="logo">
<h4 id="login">Login</h4>
</div>
<div id="nav-2">
<h3>CHECKOUT</h3>
</div>
</div> <br><br>
<div id="payment">
<input type="number" placeholder="Enter your number">
<input id="otp" type="number" placeholder="Enter the OTP">
<button id="submit">Submit</button>
</div>
<div class="footer">
<div>
<img src="https://static.nnnow.com/Verified_by_Visa_logo.png" alt="visa">
<img src="https://static.nnnow.com/verified-mastercard.png" alt="master-card">
<img src="https://static.nnnow.com/verified-pci.png" alt="payment">
<img src="https://static.nnnow.com/AMEX-safekey.png" alt="safe-key">
</div>
<div>
<p>
<pre>© 2022 NNNOW | Privacy Policy | Terms & Conditions</pre>
</p>
</div>
</div>
</body>
<script src="/scripts/checkout.js"></script>
</html>