-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
36 lines (36 loc) · 1.42 KB
/
base.html
File metadata and controls
36 lines (36 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MedAssist AI — AgentWrit Demo</title>
<link rel="stylesheet" href="/static/style.css?v=3">
<script src="https://unpkg.com/htmx.org@1.9.12"></script>
<script src="https://cdn.jsdelivr.net/npm/marked@12.0.0/marked.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dompurify@3.1.6/dist/purify.min.js"></script>
</head>
<body>
<header class="top-bar">
<div class="logo">
<span class="logo-icon">⚕</span>
<h1>MedAssist AI</h1>
<span class="subtitle">AgentWrit Healthcare Demo</span>
</div>
<nav class="tabs">
<a href="/" class="tab {% if active_tab == 'encounter' %}active{% endif %}">
<span class="tab-icon">🏥</span> Encounter
</a>
<a href="/audit" class="tab {% if active_tab == 'audit' %}active{% endif %}">
<span class="tab-icon">📋</span> Audit Trail
</a>
<a href="/operator" class="tab {% if active_tab == 'operator' %}active{% endif %}">
<span class="tab-icon">⚙</span> Operator
</a>
</nav>
</header>
<main class="content">
{% block content %}{% endblock %}
</main>
<script src="/static/app.js?v=3" defer></script>
</body>
</html>