-
Notifications
You must be signed in to change notification settings - Fork 1
/
payment.php
34 lines (34 loc) · 1.03 KB
/
payment.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
<?php
include_once('commonPHP/headerNav.php');
outputHTMLtags();
outputHeaderNav("Payment");
?>
<!-- website window resolution 1278 x 1940.58 -->
<div class="order-container">
<div id="orders-wrapper">
<!-- container for each order's details -->
<div id="order-info">
<div id="order-img"><img src="" alt=""></div>
<div id="order-name">Name:<p></p>
</div>
<div id="order-price">Price:<p></p>
</div>
<div id="order-quantity">Quantity:<p></p>
</div>
</div>
</div>
<!-- form to insert delivery details -->
<div class="pay-form">
<div class="address">
<p>Enter delivery details</p>
Street : <input type="text" name="" id="street">
City : <input type="text" name="" id="city">
Postcode: <input type="text" name="" id="postcode">
<p id="errorMsg"></p>
</div>
<button onclick="storeAddressDetails()">Pay</button>
</div>
</div>
<?php
outputFooter();
?>