-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (36 loc) · 994 Bytes
/
index.html
File metadata and controls
51 lines (36 loc) · 994 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>Awesome IRC Client</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="loading">
<div class="spinner">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
<div id="startScreen">
<div id="startOptions">
<p>Bitte gib deinen Benutzernamen ein!</p>
<input id="nickInput">
<button id="join">Speichern</button>
</div>
</div>
<div id="messageBar">
<input id="input" />
<button id="toggleEmoticons">:)</button>
<button id="sendButton">Senden</button>
<input id="fileDialog" type="file" />
<button id="fileDialogButton">Verlauf speichern</button>
</div>
<div id="emoticons"></div>
<div id="userList"></div>
<div id="messages"></div>
<script>
require('./modules/app');
</script>
</body>
</html>