forked from jwstacey/git
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder.php
More file actions
67 lines (67 loc) · 2.32 KB
/
order.php
File metadata and controls
67 lines (67 loc) · 2.32 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
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
<div class="page_order">
<?php include('template-parts/header.php'); ?>
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1>Order Page</h1>
<p>Use this page to order the items advertised on the site</p>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<img class="product" src="/images/ps4.png">
</div>
<div class="col-lg-8">
<h2>PS4</h2>
<b>£400</b>
<p>Order the PS4 now and receieve a tonne of peripherals such as light gun, steering wheel, dance mat, dodgy camera that spies on you etc.</p>
<span class="btn btn-primary">Add To Order</span>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<img class="product" src="/images/robot_buy.jpg">
</div>
<div class="col-lg-8">
<h2>Killer Robot</h2>
<b>£1,000</b>
<p>Remember to specify on the cart page if you want this in mecha suit form or standard remote control robot.</p>
<span class="btn btn-primary">Add To Order</span>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<img class="product" src="/images/tardis.jpg">
</div>
<div class="col-lg-8">
<h2>Tardis</h2>
<b>£10,000</b>
<p>Allows you to travel through time and space. Upon purchase you will need to check the tick box that says "I will not alter history" in order to proceed with the transaction.</p>
<span class="btn btn-primary">Add To Order</span>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<img class="product" src="/images/deathray.jpg">
</div>
<div class="col-lg-8">
<h2>Death Ray</h2>
<b>£50,000</b>
<p>Is there a particular country you don't like? This device will allow you to erase any country of your choosing. The added bonus is that it frees up landmass for other projects / developments you may have planned for the future.</p>
<span class="btn btn-primary">Add To Order</span>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<img class="product" src="/images/worms.jpg">
</div>
<div class="col-lg-8">
<h2>Worms for PC</h2>
<b>£5</b>
<p>Fun game in which teams of worms attempt to destroy each other with a variety of comical weapons..</p>
<span class="btn btn-primary">Add To Order</span>
</div>
</div>
</div>
</div>
<?php include('template-parts/footer.php'); ?>