This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
forked from leolisinski-nti-johanneberg/WU_2A_ProjektHT20
-
Notifications
You must be signed in to change notification settings - Fork 0
/
order.html
79 lines (79 loc) · 4 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>door.ly - Book</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap" rel="stylesheet" />
<link rel="icon" href="misc/new_logo.svg" />
</head>
<body id="order-body">
<nav id="navbar">
<ul>
<li id="logo-container">
<a href="index.html">
<img src="misc/new_logo.svg" alt="logo" />
<p>door.ly</p>
</a>
</li>
<li><a href="menu.html">Menu</a></li>
<li><a href="order.html">Order</a></li>
</ul>
</nav>
<div class="top-placeholder"></div>
<form id="order-form">
<div id="content">
<ul>
<li>
<img src="img/menu/sandwich.jpg" alt="Sandwich in a cardboard box" />
<label for="food1"
>Tasty sandwiches - 43 kr<input data-price="43" type="number" max="99" min="0" value="0" name="food1" id="food1"
/></label>
</li>
<li>
<img src="img/menu/eggs.jpg" alt="Eggs on a plate" />
<label for="food2"
>Delicious eggs - 35 kr<input data-price="35" type="number" max="99" min="0" value="0" name="food2" id="food2"
/></label>
</li>
<li>
<img src="img/menu/meatballs.jpg" alt="Bowl of spaghetti and meatballs" />
<label for="food3"
>Inviting meatballs - 67 kr<input data-price="67" type="number" max="99" min="0" value="0" name="food3" id="food3"
/></label>
</li>
<li>
<img src="img/menu/pancakes.jpg" alt="Pile of pancakes with syrup" />
<label for="food4"
>Appetizing pancakes - 87 kr<input data-price="87" type="number" max="99" min="0" value="0" name="food4" id="food4"
/></label>
</li>
<li>
<img src="img/menu/milkshake.jpg" alt="Glass of chocolate milkshake" />
<label for="food5"
>Fancy milkshakes - 39 kr<input data-price="39" type="number" max="99" min="0" value="0" name="food5" id="food5"
/></label>
</li>
<li>
<img src="img/menu/soup.jpg" alt="Bowl of tomato soup" />
<label for="food6">Spicy soup - 78 kr<input data-price="78" type="number" max="99" min="0" value="0" name="food6" id="food6" /></label>
</li>
</ul>
</div>
<input id="email" type="email" placeholder="Email" />
<input id="address" type="text" placeholder="Address" />
<input id="first-name" type="text" placeholder="First name" />
<input id="last-name" type="text" placeholder="Last name" />
<input id="card-number" type="text" placeholder="Card number" />
<input id="expiry-date" type="number" placeholder="09 / 25" />
<input id="cvv" type="number" placeholder="CVV" />
<textarea id="comment" name="comment" placeholder="Comment (optional)" rows="5"></textarea>
<span id="price">Total: 0 kr</span>
<input id="submit" type="submit" value="Place order" />
<script src="js/price_calc.js"></script>
</form>
</body>
</html>