-
Notifications
You must be signed in to change notification settings - Fork 1
/
cod.php
20 lines (19 loc) · 890 Bytes
/
cod.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php session_start(); ?>
<html>
<head>
<title>Cash On Delivery</title>
<link rel="stylesheet" href="css/cod.css">
</head>
<body>
<form action="paymentserver.php" method="post">
<p>Note:In Case of Order cancel After Dispatch you will be charged 20% of the order cost!</p>
<input type="checkbox" style="cursor: pointer;" id="tc" value="on" name="tc" required><label id="ft">I have read and agree with the <a href="tc.html" style="text-decoration: none; color: darkblue;">Terms and Conditions.</a></label>
<br>
<br>
<br>
<br>
<button type="submit" name="btn1" class="btn1" value="submit">Confirm Order</button>
</form>
<button style="text-decoration: none;" class="btn2" onclick="location.href = 'main payment gateway.php'">Abort</button>
</body>
</html>