forked from DeNepo/separation-of-concerns-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (43 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./client/public/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Your List</title>
<link href="./client/styles/index.css" rel="stylesheet" />
</head>
<body>
<div class="heading">
<img src="client\public\logo.svg" alt="Col Group" class="logo">
<h1 class="header1">Shopping Center</h1>
</div>
<div class="home">
<div class="intro">
<h2 class="header2">Welcome To Your Shopping List</h2>
<p class="instructions">
Feel free to make your own shopping list!<br />
You can add, delete or edit the items inside the list.
<br />
</p>
</div>
<!-- The List (textbox + buttons)-->
<form class="form" id="input-area">
<label for="prod">Product Name:</label><br>
<input class="input" type="text" id="productName" placeholder="Add product" >
<!-- Product Exist message -->
<div id="productExist" class="productExist"></div><br>
<input type="button" class="button" value="Add" id="addBtn" />
<input type="button" class="button" value="Remove" id="removeBtn" />
<input type="button" class="button" value="Edit" id="editBtn" /> <br> <br>
<label for="prod" style="display: none;" id="editLabel">Product New Name:</label><br>
<input class="input" type="text" id="editProductName" placeholder="Edit product" style="display: none;" >
<input class="button" type="button" value="Save" id="saveBtn" style="display: none;" />
</form>
<!-- The list Menu -->
<div id="list" class=" listMenu"></div>
</div>
<!-- end of page body -->
<script type="module" src="./client/src/init/index.js"></script>
</body>
</html>