-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (68 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Online Fruit Shop" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" type="image/x-icon" href="./public/favicon.ico" />
<link rel="stylesheet" href="./public/css/reset.css" />
<link rel="stylesheet" href="./public/css/index.css" />
<link
href="https://fonts.googleapis.com/css?family=Berkshire+Swash&display=swap"
rel="stylesheet"
/>
<title>FAC Fruit Basket</title>
</head>
<body>
<section class="fWrapper">
<section>
<section class="hBox">
<h1>FAC Fruit Basket</h1>
</section>
<section class="displayUsername"></section>
<section class="nameField">
<form action="/submitname" method="post">
<label for="new-username" class="name">Name:</label>
<input
id="new-username"
aria-label="Enter your name"
type="text"
placeholder="Enter your name..."
autocomplete="off"
required
/>
<button aria-label="Submit your details" type="submit" id="nameBtn">
Submit
</button>
</form>
</section>
<h2>Fruit Shop</h2>
<p id="kitty">Kitty:</p>
<table class="stock_table">
<thead>
<tr>
<th class="stock_name">Fruit</th>
<th class="stock_level">Stock</th>
<th class="stock_price">Price £</th>
</tr>
</thead>
<tbody></tbody>
</table>
</section>
<section>
<h2>Basket</h2>
<table class="shopping_list tables">
<thead>
<tr>
<th class="purchased_name">Fruit</th>
<th class="purchased_amount">Amount</th>
</tr>
</thead>
<tbody></tbody>
</table>
</section>
</section>
<script type="text/javascript" src="./public/scripts/index.js"></script>
</body>
</html>