-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (62 loc) · 2.46 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name=viewport content="width=device-width, initial-scale=1">
<meta name="description" content="Order">
<title>Order</title>
</head>
<body>
<header>
<h1>James' Coffee Shop</h1>
</header>
<main>
<p> If you cannot see the options, please press F5 or reload the page again. We are so sorry for this inconvenience.</p>
<p>This page is for ordering drinks. Any field with * is compulsory.<br>
Save a favorite drink before adding it to the cart.
</p>
<form method="get">
<div>
<fieldset id="type">
<legend>Type (*):</legend>
</fieldset>
</div><br>
<div>
<label for="coffee">Coffee (*):</label>
<select id="coffee" name="coffees" onchange="current()" >
<option value="Default">Please choose the type of coffee first</option>
</select>
</div><br>
<div>
<label for="size">Size (*):</label>
<select id="size" name="sizes" onchange="current()" >
<option value="Default">Please choose the type of coffee first</option>
</select>
</div> <br>
<div>
<fieldset id="extra">
<legend>Extras:</legend>
</fieldset>
</div><br>
<div id="currentDrink">
<p><b>CURRENT DRINK:</b></p>
</div><br>
<input type='Button' id="save" value="Save Favorite" disabled="disabled"> <br>
<div id="favDrink">
<p><b>FAVORITE DRINK:</b></p>
</div><br>
<input type ='Button' id="add" value="Order Favorite" disabled="disabled"><br>
<div id="cart">
<p><b>CART:</b></p>
</div><br>
<div id="total">
</div><br>
<input type ='Button' id="final" value="CHECKOUT" disabled="disabled"><br><br>
<div id="confirmation">
</div>
</form>
<script type="text/javascript" src="script.js"></script>
</main>
</body>
</html>
<!-- https://nmt-project3.web.app-->