-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage_order.html
98 lines (88 loc) · 2.63 KB
/
page_order.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>BEST PIZZA</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/page_order.css">
</head>
<body>
<!-- UNITED CONTENT -->
<div class="bgpicture"></div>
<div class="giantpizza bleft"></div>
<div class="giantpizza bcenter"></div>
<div class="giantpizza bright"></div>
<a class="bestbutton sexytext navelement" href="index.html"><img src="img/logo.png" alt="MEGA LOGO" width="72"/>BEST<br/>PIZZA</a>
<ul>
<li class="navelement"><a href="page_order.html">Order</a></li>
<li class="navelement"><a href="page_pleasehelp.html#please-help-me-i-do-not-want-to-lose-my-sanity">Please help</a></li>
<li class="navelement"><a href="page_about.html">About us</a></li>
</ul>
<div class="padded">
<!-- UNIQUE CONTENT -->
<h2 class="sexytext">You are cool! Please fill this form to get your delicious pizza!</h2>
<div class="orderbox">
<form action="/index.html">
<div class="row">
<div class="col-label">
<label>Your full name</label>
</div>
<div class="col-input">
<input type="text" placeholder="In PSFIGN format">
</div>
</div>
<div class="row">
<div class="col-label">
<label>City</label>
</div>
<div class="col-input">
<select id="country" name="country">
<option>Algorstast</option>
<option>Gequintal</option>
<option>Turniket</option>
<option>Tartu</option>
<option>Nervrestan</option>
<option>Praimertet</option>
</select>
</div>
</div>
<div class="row">
<div class="col-label">
<label>Where to ship?</label>
</div>
<div class="col-input">
<input type="text" placeholder="GGEO-tag or full address">
</div>
</div>
<div class="row">
<div class="col-label">
<label>Your credit card number</label>
</div>
<div class="col-input">
<input type="text" placeholder="Full IBAN, 42 symbols">
</div>
</div>
<div class="row">
<div class="col-label">
<label>Your banking MRTQ</label>
</div>
<div class="col-input">
<input type="text" placeholder="Inc. goverment, planet and city">
</div>
</div>
<div class="row">
<div class="col-label">
<label>Which pizza would you like?</label>
</div>
<div class="col-input">
<textarea placeholder="Do not forget to tell about spicy things and acids! Do you like Curnderzan cheese?" style="height:200px"></textarea>
</div>
</div>
<div class="row">
<input type="submit" value="Submit">
</div>
</form>
</div>
</div>
</body>
</html>