-
Notifications
You must be signed in to change notification settings - Fork 0
/
Acart.php
102 lines (83 loc) · 3.11 KB
/
Acart.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
<?php include('conn/connection.php'); ?>
<?php include('conn/Dpheader.php');
?>
<!-- NAVIGATION -->
<nav id="navigation">
<!-- container -->
<div class="container">
<!-- responsive-nav -->
<div id="responsive-nav">
<!-- NAV -->
<ul class="main-nav nav navbar-nav">
<li><a href="DINDEX.php">Home</i></a></li>
<li><a href="DMBSTORES.php">Mother Boards</a></li>
<li><a href="DTOOLS.php">Tools</a></li>
<li><a href="DMCSTORES.php">Modules & Sensors</a></li>
<li><a href="DPA.php">Project Accessories</a></li>
<li><a href="DIOT.php">IOT</a></li>
<li><a href="hotdeals.php"style="color: red;">HOT DEALS <i class="fa fa-gift" style="font-size:20px;color:red"></i></a></li>
<li class="active"><a href="CHECKOUT.php"style="color: red;">Cart <i class="fa fa-cart-arrow-down" style="font-size:20px;color:red"></i></i></a></li>
</ul>
<!-- /NAV -->
</div>
<!-- /responsive-nav -->
</div>
<!-- /container -->
</nav>
<!-- /NAVIGATION -->
<div class="checkout-panel">
<div class="panel-body">
<h2 class="title">Checkout here!</h2>
<div class="progress-bar">
<div class="step active"></div>
<div class="step active"></div>
<div class="step"></div>
<div class="step"></div>
</div>
<div class="payment-method">
<label for="card" class="method card">
<div class="card-logos">
<img src="https://designmodo.com/demo/checkout-panel/img/visa_logo.png"/>
<img src="https://designmodo.com/demo/checkout-panel/img/mastercard_logo.png"/>
</div>
<div class="radio-input">
<input id="card" type="radio" name="payment">
Pay AU$20.99 with credit card
</div>
</label>
<label for="paypal" class="method paypal">
<img src="https://designmodo.com/demo/checkout-panel/img/paypal_logo.png"/>
<div class="radio-input">
<input id="paypal" type="radio" name="payment">
Pay AU$20.99 with PayPal
</div>
</label>
</div>
<div class="input-fields">
<div class="column-1">
<label for="cardholder">Name</label>
<input type="text" id="cardholder" />
<div class="small-inputs">
<div>
<label for="date">Valid date</label>
<input type="text" id="date"/>
</div>
<div>
<label for="verification">CVV / CVC *</label>
<input type="password" id="verification"/>
</div>
</div>
</div>
<div class="column-2">
<label for="cardnumber">Card Number</label>
<input type="password" id="cardnumber"/>
<span class="info">* CVV or CVC is the card security code, unique three digits number on the back of your card separate from its number.</span>
</div>
</div>
</div>
<div class="panel-footer">
<button class="btn back-btn">Back</button>
<button class="btn next-btn">Next Step</button>
</div>
</div>
<?php include_once('conn/Dpfooter.php'); ?>