forked from rossacheson/Tardis
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpay.html
More file actions
34 lines (30 loc) · 1.69 KB
/
pay.html
File metadata and controls
34 lines (30 loc) · 1.69 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>Pay</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="headline"><h1>Confirm your delivery options</h1></div>
<div class="choose_store"><form action="show_store.php">
<div id="show_storeid"><input type="submit" value="Show_store" name="Show_stores" />show all stores</div>
</form></div>
<div class="store_option"><form action="Store.php" method="POST">
<div class="Store_Input"><input type="text" name="store_ID" value="" />Choose a store ID</div>
<div class="Store_Input"><input type="submit" value="Confirm" name="Confirm" /></div>
<div class="Store_Input"><input type="reset" value="Clear" name="Clear" /></div>
</form></div>
<div class="PayInfo"><form action="Pay.php" method="POST">
<div class="pay_table"><input type="text" name="customer_ID" value="" />Enter your customer_ID</div>
<div class="pay_table"><input type="text" name="salesperson_ID" value=""/>Enter the id of the salesperson</div>
<div class="pay_table"><input type="submit" value="Confirm" name="Confirm" /></div>
<div class="pay_table"><input type="reset" value="Clear" name="Clear" /></div>
</form></div>
</body>
</html>