-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquotes.html
More file actions
57 lines (54 loc) · 2.77 KB
/
Copy pathquotes.html
File metadata and controls
57 lines (54 loc) · 2.77 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Swish Innovation - Quotes</title>
<link rel="icon" type="image/jpeg" href="assets/swish-logo.jpeg" />
<link rel="apple-touch-icon" href="assets/swish-logo.jpeg" />
<link rel="stylesheet" href="styles.css" />
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.min.js" defer></script>
<script src="app.js" defer></script>
</head>
<body data-page="quotes">
<div class="app-shell">
<aside class="sidebar">
<div class="brand">
<img class="brand-logo" src="assets/swish-logo.jpeg" alt="Swish Innovation logo" />
<div>
<h1>Swish Innovation</h1>
<p>Quotes and invoices</p>
</div>
</div>
<nav class="primary-nav" aria-label="Main navigation">
<a href="index.html" data-nav="dashboard"><i data-lucide="layout-dashboard"></i><span>Summary</span></a>
<a href="create.html" data-nav="create"><i data-lucide="file-plus-2"></i><span>Create</span></a>
<a href="quotes.html" data-nav="quotes"><i data-lucide="file-text"></i><span>Quotes</span></a>
<a href="invoices.html" data-nav="invoices"><i data-lucide="receipt"></i><span>Invoices</span></a>
<a href="settings.html" data-nav="settings"><i data-lucide="settings"></i><span>Settings</span></a>
</nav>
<div class="sidebar-actions">
<a class="primary-action" href="create.html?new=quote"><i data-lucide="file-plus-2"></i><span>New Quote</span></a>
<a class="secondary-action" href="create.html?new=invoice"><i data-lucide="receipt"></i><span>New Invoice</span></a>
<button class="ghost-button" id="appLogoutBtn" type="button"><i data-lucide="log-out"></i><span>Logout</span></button>
</div>
</aside>
<main class="workspace">
<header class="page-header">
<div>
<p class="eyebrow">Quotes</p>
<h2>Quote List</h2>
<p>Review draft, sent, approved, and declined quotations.</p>
</div>
<a class="primary-action" href="create.html?new=quote"><i data-lucide="file-plus-2"></i><span>New Quote</span></a>
</header>
<section class="list-controls">
<label class="search-box" for="listSearch"><i data-lucide="search"></i><input id="listSearch" type="search" placeholder="Search quotes" /></label>
<label><span>Status</span><select id="statusFilter"></select></label>
</section>
<section class="metric-grid compact-metrics" id="listMetrics"></section>
<section class="record-stack" id="recordsList" aria-label="Quote records"></section>
</main>
</div>
</body>
</html>