-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (34 loc) · 1.08 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Earthstar Vanilla Chat</title>
<meta name="description" content="Simple chat application to showcase Earthstar">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./styles.css">
<style></style>
<script src="./earthstar.bundle.js" type="module">
</script>
</head>
<body>
<h1>Vanilla Chat</h1>
<h2>Participants</h2>
<ul id="participants"></ul>
<h2>Messages</h2>
<div id="chat-container">
<ul id="log"></ul>
</div>
<form id="display-name-form">
<label for="display-name-input">Display Name</label>
<input type="text" name="display-name-input" />
<button>Submit</button>
</form>
<form id="message-form">
<label for="message-input">Message</label>
<input type="text" name="message-input" />
<button>Submit</button>
</form>
<script src="./main.js" type="module" async defer></script>
</body>
</html>