-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
128 lines (116 loc) · 2.62 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<head>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="UTF-8" />
<title>codetyper</title>
<link rel="stylesheet" href="web-app/static/styles/style.css" />
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons+Round"
rel="stylesheet"
/>
</head>
<style></style>
<body>
<header id="header">
<div>
<button id="logoButton" type="button">
codetyper
</button>
<span class="experimental">
Experimental mode
</span>
</div>
<div></div>
<div></div>
<div>
<button id="profileButton" type="button">
<span class="material-icons-round">
person
</span>
</button>
<button id="settingsButton" type="button">
<span class="material-icons-round">
settings
</span>
</button>
</div>
</header>
<div id="screenContainer"></div>
<!-- Libraries -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.4.1/chart.min.js"></script>
<!-- WebSocket -->
<script
type="module"
src="web-app/static/scripts/sockets/initialize.js"
></script>
<!-- GitHub -->
<script
type="module"
src="web-app/static/scripts/github/api.js"
></script>
<script
type="module"
src="web-app/static/scripts/github/service.js"
></script>
<!-- Firebase -->
<script
type="module"
src="web-app/static/scripts/firebase/initialize.js"
></script>
<script
type="module"
src="web-app/static/scripts/firebase/service.js"
></script>
<!-- Events -->
<script
type="module"
src="web-app/static/scripts/events/bus.js"
></script>
<!-- Utils -->
<script
type="module"
src="web-app/static/scripts/utils/code.js"
></script>
<!-- Settings -->
<script
type="module"
src="web-app/static/scripts/settings/types.js"
></script>
<script
type="module"
src="web-app/static/scripts/settings/initialize.js"
></script>
<!-- Screens -->
<script
type="module"
src="web-app/static/scripts/screens/screen.js"
></script>
<script
type="module"
src="web-app/static/scripts/screens/pick.js"
></script>
<script
type="module"
src="web-app/static/scripts/screens/test.js"
></script>
<script
type="module"
src="web-app/static/scripts/screens/settings.js"
></script>
<script
type="module"
src="web-app/static/scripts/screens/result.js"
></script>
<script
type="module"
src="web-app/static/scripts/screens/screens.js"
></script>
<!-- Main -->
<script type="module" src="web-app/static/scripts/index.js"></script>
</body>
</html>