-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.2 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.2 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Emotion Recognition Task</title>
<link rel="stylesheet" href="src/notifications.css" />
</head>
<body>
<div id="root"></div>
<div id="notification-modal-container" data-state="closed">
<div id="notification-modal-content">
<div id="notification-modal-header">
<h5 id="notification-modal-title"></h5>
<button id="notification-close-button" type="button">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="black"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M18 6 6 18" />
<path d="m6 6 12 12" />
</svg>
</button>
</div>
<div id="notification-modal-content">
<p id="notification-modal-message"></p>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>