-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatalogue.html
executable file
·114 lines (100 loc) · 3.33 KB
/
catalogue.html
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
<!DOCTYPE html>
<!-- START HEADER -->
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title> Urban Groove Store - Catalogue </title>
<center>
<h1>URBAN GROOVE STORE</h1>
<img src="uglogo.jpg" alt="Urban Groove Store" height="250" width="250">
<div class="space"></div>
<div id="umenu">
<a href="index.html">HOME</a>
<a href="catalogue.html">CATALOGUE</a>
<a target='_blank' href="login.html">LOGIN</a>
</div>
<div class="space"></div>
<div class="line"></div>
</center>
</head>
<!--END HEADER-->
<!--START BODY-->
<div class="body">
<body><center>
<br>
<h1>UG Catalogue 2014-2015</h1>
<i style="font-size:11px">Please select the checkbox and press submit to place an order.</i>
<br>
<br>
<!-- START ITEMS ROW 1 -->
<form action = "http://cs.mcgill.ca/~knam2/Purchase.py" method="post">
<table id="items">
<tr>
<td><img src="items/beanie.jpg" alt="Beanie" width="300" height="400"></td>
<td><img src="items/crewneck.jpg" alt="Crewneck" width="300" height="400"></td>
<td><img src="items/tanktop.jpg" alt="Tanktop" width="300" height="400"></td>
</tr>
<tr>
<td><b>Charcoal Black UG Beanie $10 </b>
<p>Soft, slick and comfortable. One size.</p>
Quantity:<input type="text" maxlength="2" style="width:30px" name="beaniex">
<input type="checkbox" name="beanie" value="beanie">
</td>
<td><b>Heather Black UG Crewneck $20</b>
<p>100% Fresh. Comfy and stylish (S/M/L/XL).</p>
Quantity:<input type="text" maxlength="2" style="width:30px" name="crewneckx">
<input type="checkbox" name="crewneck" value="crewneck">
</td>
<td><b>Black UG Tanktop $15</b>
<p>Represent UG! Classic tanktop. (S/M/L).</p>
Quantity:<input type="text" maxlength="2" style="width:30px" name="shirtx">
<input type="checkbox" name="shirt" value="shirt">
</td>
</tr>
</table>
<!-- END ITEMS ROW 1 -->
<br>
<!-- START ITEMS ROW 2 -->
<table id="items">
<tr>
<td><img src="items/snapback.jpg" alt="snapback" width="300" height="400"></td>
<td><img src="items/baseball.jpg" alt="baseball" width="300" height="400"></td>
<td><img src="items/pants.jpg" alt="pants" width="300" height="400"></td>
</tr>
<tr>
<td><b>Black UG Snapback $12</b>
<p>Swaggy swag. One size.</p>
Quantity:<input type="text" maxlength="2" style="width:30px" name="snapbackx">
<input type="checkbox" name="snapback" value="snapback">
</td>
<td><b>Black UG Baseball Tee $15</b>
<p>We don't actually play baseball. (S/M/L/XL).</p>
Quantity:<input type="text" maxlength="2" style="width:30px" name="baseballx">
<input type="checkbox" name="baseball" value="baseball">
</td>
<td><b>Black UG Sports Pants $30</b>
<p>Stretchy and fresh. Perfect for dance! (S/M/L).</p>
Quantity:<input type="text" maxlength="2" style="width:30px" name="pantsx">
<input type="checkbox" name="pants" value="pants">
</td>
</tr>
</table>
<!-- END ITEMS ROW 2 -->
<input type="submit" value="Place Order">
<input type="hidden" name="user" value="null">
</form>
</center>
</body>
</div>
<!--END BODY-->
<!-- START FOOTER -->
<div id="footer">
<br>
<a href="index.html">HOME</a>
<a href="catalogue.html">CATALOGUE</a>
<a href="login.html">LOGIN</a>
<br>
<p><i>Created by: Kevin Nam & Thomas Wong (2014)</i><p>
</div>
<!--END FOOTER-->
</body>
</html>