-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.74 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link href="https://fonts.googleapis.com/css2?family=Quicksand:[email protected]&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Little Shop</title>
</head>
<body>
<aside>
<header>
<h1>Little Shop</h1>
<h2>admin portal</h2>
</header>
<nav>
<button id="merchants-nav" class="active-nav">
<p>Merchants</p>
</button>
<button id="items-nav">
<p>Items</p>
</button>
</nav>
</aside>
<main>
<section class="display-options">
<h3>Showing: <span id="showing-text">All Merchants</span></h3>
<p id="status-message" class="hidden"><!-- Status message here! --></p>
<button id="add-new-button" class="add-new-button" data-state="merchant">+ Add New Merchant</button>
<form id="new-merchant-form" class="hidden">
<input id="new-merchant-name" name="new-merchant-name" type="text" placeholder="New Merchant Name">
<button id="submit-merchant" class="submit">Submit</button>
</form>
</section>
<section id="add-new-options">
</section>
<section id="merchants-view" class="view">
<!-- Data will be displayed here -->
</section>
<section id="items-view" class="view items-view hidden">
<!-- Data will be displayed here -->
</section>
<section id="coupons-view" class="view coupons-view hidden">
<!-- Data will be displayed here -->
</section>
</main>
<script type="module" src="/main.js"></script>
</body>
</html>