-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.php
158 lines (111 loc) · 3.83 KB
/
checkout.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Foodie</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/half-slider.css" rel="stylesheet">
<!-- Custom styles for this index page -->
<link href="vendor/custom/css/index.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" />
<!-- Custom styles for this profile page -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href="vendor/custom/css/profile.css" rel="stylesheet">
<script src="vendor/custom/js/profile.js"></script>
</head>
<body>
<?php
include "nav.php";
?>
<!-- CheckOut-->
<div class="container">
<div class="row">
<div class="col-xs-8">
<div class="panel panel-info">
<div class="panel-heading">
<div class="panel-title">
<div class="row">
<div class="col-xs-6">
<h5><span class="glyphicon glyphicon-shopping-cart"></span> Food Cart</h5>
</div>
<div class="col-xs-6">
<button type="button" class="btn btn-primary btn-sm btn-block">
<span class="glyphicon glyphicon-share-alt"></span> Continue shopping
</button>
</div>
</div>
</div>
</div>
<div class="panel-body">
<div class="row">
<div class="col-xs-2">
</div>
<div class="col-xs-4">
<h4 class="product-name"><strong>Hot & Crispy Chicken</strong></h4><h4><small>KFC</small></h4>
</div>
<div class="col-xs-6">
<div class="col-xs-6 text-right">
<h6><strong>Tk 275 <span class="text-muted">x</span></strong></h6>
</div>
<div class="col-xs-4">
<input type="text" class="form-control input-sm" value="1">
</div>
<div class="col-xs-2">
<button type="button" class="btn btn-link btn-xs">
<span class="glyphicon glyphicon-trash"> </span>
</button>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="col-xs-2">
</div>
<div class="col-xs-4">
<h4 class="product-name"><strong>Zinger Burger</strong></h4><h4><small>Product description</small></h4>
</div>
<div class="col-xs-6">
<div class="col-xs-6 text-right">
<h6><strong>Tk 279 <span class="text-muted">x</span></strong></h6>
</div>
<div class="col-xs-4">
<input type="text" class="form-control input-sm" value="1">
</div>
<div class="col-xs-2">
<button type="button" class="btn btn-link btn-xs">
<span class="glyphicon glyphicon-trash"> </span>
</button>
</div>
</div>
</div>
<hr>
</div>
<div class="panel-footer">
<div class="row text-center">
<div class="col-xs-9">
<h4 class="text-right">Total <strong>Tk 553.00</strong></h4>
</div>
<div class="col-xs-3">
<button type="button" class="btn btn-success btn-block" onclick="window.location.href = 'payment.php'">
Checkout
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="vendor/custom/js/sign_up.js"></script>
</body>
</html>