-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuyCart.php
88 lines (82 loc) · 4.02 KB
/
buyCart.php
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
<?php
//session_start();
//require "connection.php";
//echo("success");
?>
<html>
<head>
<meta charset="UTF-8">
<title>Payment Method</title>
<link type="text/css" rel="stylesheet" href="paymentMethod.css"/>
<link href="https://fonts.googleapis.com/css?family=Poppins" rel="stylesheet"/>
<link rel="shortcut icon" href="school.png"/>
<link rel="icon" href="resources/logos/logo.gif"/>
<?php
$uid="";
?>
</head>
<body>
<?php include "headerTop.php"?>
<br/>
<?php
//if(isset($_SESSION["u"])){$uid=$_SESSION["u"]["id"];}
?>
<div class="product-box1" style="margin-top: -13vh;">
<div class="box-product-body">
<div class="box-product-body-inner">
<form class="product-details" method="get" action="checkout.php">
<div class="payment-heading-div-outer">
<div class="payment-method-logo">
<div class="payment-method-logo-inner"></div>
</div>
<div class="payment-method-desc">
<br/>
<span class="saying">GIMMICK</span>
<span class="sell_price">LKR .00</span>
</div>
</div>
<div class="payment-options-div-outer">
<span class="select-pay-sp">Select a payment Method</span>
<br/>
<br/>
<span class="payment-type-one">Credit/Debit Card</span>
<div class="payment-methods">
<input class="one" name="one" id="one" type="submit" value="visa"/>
<input class="two" name="two" type="submit" value="mastercard"/>
<input class="three" name="three" type="submit" value="americanexpress"/>
<input class="four" name="four" type="submit" value="discover"/>
<input class="five" name="five" type="submit" value="dinnersclub"/>
</div>
<br/>
<br/>
<span class="payment-type-one">Mobile Wallet</span>
<div class="payment-methods">
<input class="six" name="six" type="submit" value="paypal"/>
<input class="seven" name="seven" type="submit" value="bbb"/>
<input class="eight" name="eight" type="submit" value="worldpay"/>
<input class="nine" name="nine" type="submit" value="hsbc"/>
</div>
</div>
</form>
</div>
<br/>
<br/>
<br/>
<br/>
<div class="row">
<?php include "footer.php"?>
</div>
</div>
</div>
<script type="text/javascript" src="back.js"></script>
</body>
</html>