-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpayment.html
106 lines (84 loc) · 3.47 KB
/
payment.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!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>Payment Section</title>
<link rel="icon" href="./feviIcon/android-chrome-512x512.png" />
<link rel="stylesheet" href="./css/payment.css" />
</head>
<body>
<div class="nav">
<a href="index.html"><img id="logo" src="./img/project logo1.jpg" style="width: 150px" alt="" /></a>
</div>
<div class="Am-main">
<div class="container">
<div class="qwe1">
<span class="Am-title">Payment Method</span>
</div>
<hr style="background-color:black">
<div class="asd">
<div class="icon-1">
<img class="icon-1"
src="https://img.freepik.com/premium-vector/green-color-dollar-currency-banknote-icon-cash-icon-dollar-bill-flat-vector-illustration_646737-727.jpg?w=740"
alt="">
</div>
<span class="text-1">Cash on Delivery</span>
<div class="icondiv-2">
<input class="icon-2" type="checkbox" id="payment-check1" onclick="check1()">
</div>
</div>
<div class="asd">
<div class="icon-1">
<img class="icon-1"
src="https://uxwing.com/wp-content/themes/uxwing/download/brands-and-social-media/upi-icon.png"
alt="">
</div>
<span class="text-1">UPI Payment</span>
<div class="icondiv-2">
<input style="margin-left: 125px;" class="icon-2" type="checkbox" id="payment-check2"
onclick="check2()">
</div>
</div>
</div>
<div class="pricedetail">
<div style="width: inherit;">
<div class="abc">
<span>Price Details</span>
<div class="abc2">
<div class="abc3">
<div>
<p>Total Product Price :</p>
</div>
<p id="sub-total">₹0</p>
</div>
<div class="abc3" style="color: rgb(3, 141, 99);">
<p>Total Discounts :</p>
<p id="discount">- ₹0</p>
</div>
</div>
<hr>
<div class="abc4">
<div class="abc3"><span>Order Total :</span><span id="total">₹0</span>
</div>
<div class="discount-div">
<picture>
<img src="https://images.meesho.com/images/marketing/1657272960496.png" alt=""
width="15" height="15">
</picture>
<span>Yay! Your total discount is <span id="discount2">₹0</span> </span>
</div>
</div>
</div>
</div>
<div class="abc5">
<div>
<button id="continue-btn">Continue</button>
</div>
</div>
</div>
</div>
</body>
<script src="./scripts/payment.js"></script>
</html>