-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (63 loc) · 2.35 KB
/
Copy pathindex.html
File metadata and controls
66 lines (63 loc) · 2.35 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
58
59
60
61
62
63
64
65
66
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>EPL Assistant</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div id="loading-overlay" class="loading-overlay">
<div class="loading-spinner"></div>
<p class="loading-text">Loading EPL Assistant...</p>
</div>
<div class="shell">
<header class="hero">
<div class="hero-copy">
<p class="eyebrow">Enterprise Permitting & Licensing</p>
<h1>EPL Assistant</h1>
<p class="lead">
A guide-backed assistant for Enterprise Permitting & Licensing that can help with setup,
user workflows, coordinator tasks, and vendor-specific review processes.
</p>
</div>
<div class="hero-panel">
<p class="panel-label">How it answers</p>
<ul class="panel-list">
<li>Routes by role, topic, and vendor when needed</li>
<li>Prefers direct procedural steps from the guides</li>
<li>Includes guide links for follow-up research</li>
</ul>
<button id="dark-mode-toggle" class="dark-mode-toggle" aria-label="Toggle dark mode">
<span class="icon-light">☀️</span>
<span class="icon-dark">🌙</span>
</button>
</div>
</header>
<main class="workspace">
<section class="sidebar">
<div class="card">
<p class="card-label">Suggested Questions</p>
<div id="suggestions" class="suggestions"></div>
</div>
</section>
<section class="chat-area">
<form id="chat-form" class="chat-form">
<label class="sr-only" for="question">Ask a question</label>
<input
id="question"
name="question"
type="text"
placeholder="Ask about EPL setup, user workflows, coordinator tasks, dashboards, permits, licenses, or review steps"
autocomplete="off"
/>
<button type="submit">Ask</button>
</form>
<div id="chat-log" class="chat-log" aria-live="polite"></div>
</section>
</main>
</div>
<script src="./data/knowledge-base.js"></script>
<script src="./app.js"></script>
</body>
</html>