-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 996 Bytes
/
index.html
File metadata and controls
33 lines (33 loc) · 996 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="Contoso Burgers AI Agent" />
<link rel="icon" type="image/png" href="/favicon.png" />
<title>Contoso Burgers AI Agent</title>
<link rel="stylesheet" href="/src/styles.css" />
</head>
<body>
<nav>
<img src="/favicon.png" alt="" />
Contoso Burgers AI Agent
<div class="spacer"></div>
<azc-auth type="guard">
<azc-user-card></azc-user-card>
</azc-auth>
<azc-auth type="status"></azc-auth>
</nav>
<main>
<azc-auth>
<azc-history id="chatHistory"></azc-history>
<azc-chat id="chat"></azc-chat>
</azc-auth>
</main>
<script type="module" src="/src/index.ts"></script>
<script type="module">
import { initUserSession } from '/src/index.ts';
await initUserSession();
</script>
</body>
</html>