-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfirmPayment.html
56 lines (55 loc) · 1.77 KB
/
confirmPayment.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
<!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>Information - Dot & Key - Checkout</title>
<script
src="https://kit.fontawesome.com/cc7490e492.js"
crossorigin="anonymous"
></script>
<link
rel="shortcut icon"
href="//cdn.shopify.com/s/files/1/0361/8553/8692/files/d_and_k_and_logo_1_32x32.png?v=1593074179"
type="image/png"
/>
<link rel="stylesheet" href="styles/confirm.css" />
</head>
<body>
<div class="card" id="confirmPage">
<!-- <div class="doneImg">
<i class="fa-solid fa-check"></i>
</div>
<div class="orderText">
<h3>Your Odrder Is Confirmed</h3>
</div> -->
</div>
<div id="otp" class="card">
<!-- <h2 class="titleHead">OTP Verification</h2>
<input
type="number"
name=""
id="otpNum"
placeholder="Enter OTP 1008"
/><br />
<button id="otpVerify">Verify Otp</button> -->
</div>
<div class="card cardsPayment" id="pCard">
<!-- <h2>Enter Card's Details</h2>
<input type="number" name="" id="cardNumber" placeholder="Card Number" />
<br />
<div class="monthYear">
<input type="number" name="" id="month" placeholder="MM/YY" />
<div class="cVV">
<input type="number" id="cvv" placeholder="CVV" maxlength="3" />
</div>
</div>
<div class="cardhName">
<input type="text" name="" id="hName" placeholder="Card Holder Name" />
</div>
<button class="submit" id="cardSubmit">Submit</button> -->
</div>
</body>
</html>
<script src="scripts/confirmPayment.js" type="module"></script>