-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (53 loc) · 1.9 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
<!DOCTYPE html>
<html>
<head>
<title>Shopping List</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="title">Shopping List</h1>
<div class="shopping-form">
<form onsubmit="event.preventDefault();FormSubmit();" autocomplete="off">
<div>
<label>Name</label><label class="validation-error hide" id="NameValidationError">This field is required.</label>
<input type="text" name="Name" id="Name">
</div>
<div>
<label>Brand</label>
<input type="text" name="Brand" id="Brand">
</div>
<div>
<label>Quantity</label>
<input type="text" name="Quantity" id="Quantity">
</div>
<div>
<label>Price</label>
<input type="text" name="Price" id="Price">
</div>
<div class="form-action-buttons">
<input type="submit" value="Submit">
</div>
</form>
</div>
<br/>
<div class = "shopping-table">
<table class="list" id="shoppingList">
<thead>
<tr>
<th>Name</th>
<th>Brand</th>
<th>Quantity</th>
<th>Price</th>
<th>Options</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<!-- <div class="export-action-buttons">
<input type="submit" value="Export">
</div> -->
</div>
<script src="script.js"></script>
</body>
</html>