-
Notifications
You must be signed in to change notification settings - Fork 0
/
confirmation.html
48 lines (47 loc) · 1.67 KB
/
confirmation.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
<!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>confirmation page</title>
<link rel="icon" href="https://img.freepik.com/free-vector/botanical-capital-letter-p-vector_53876-165798.jpg?w=2000">
<link rel="stylesheet" href="/CSS/confirmation.css">
</head>
<body>
<h1>Confirmation Page</h1>
<p class="home">
<a href="/test.html" style="color: white;">home</a>
</p>
<h3>your orders are </h3>
<table>
<tr>
<th>item</th>
<th> </th>
<th>price</th>
</tr>
<tr>
<td>handbag</td>
<td><img src="https://cdn.shopify.com/s/files/1/2186/5207/products/KutchGamthiHandbag2_600x.jpg?v=1668094043" alt="image unavailable" width="300"></td>
<td>$34</td>
</tr>
</table><br><br>
<form action="payment">
<p>payment options</p>
net banking <br>
<a href="https://www.onlinesbi.sbi/personal/">
<button>state bank of india</button>
</a><br>
<a href="https://infinity.icicibank.com/corp/AuthenticationController?FORMSGROUP_ID__=AuthenticationFG&__START_TRAN_FLAG__=Y&FG_BUTTONS__=LOAD&ACTION.LOAD=Y&AuthenticationFG.LOGIN_FLAG=1&BANK_ID=ICI">
<button>ICICI bank</button>
</a><br><br>
UPI <br>
<a href="https://paytm.com/money-transfer">
<button>Paytm</button>
</a><br>
<a href="https://www.phonepe.com/how-to-pay/pay-by-phonepe/web/">
<button>phonepe</button>
</a>
</form>
</body>
</html>