This repository has been archived by the owner on Jan 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (47 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'"> -->
<!-- <meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'"> -->
<title>GU decks assistant!</title>
<link rel="stylesheet" type="text/css" href="./styles.css" />
</head>
<body>
<h1>Hello, I am your decks assistant. Current version is: <span id="app-version"></span></h1>
<br />
<div class="player-form">
<p>Enter your player name below: </p>
<input name="player-name" type="text" class="player-name"/>
<br />
<button type="submit" class="submit-btn">Submit</button>
<div class="welcome-player"></div>
</div>
<br />
<button id="toggle-dark-mode">Toggle Dark Mode</button>
<button id="reset-to-system">Reset to System Theme</button>
<br />
<div class="deck-data">
<div class="current-player">
</div>
<div class="opponent">
</div>
</div>
<div class="test"></div>
<!-- Insert this line above script imports -->
<script>
if (typeof module === "object") {
window.module = module;
module = undefined;
}
</script>
<!-- normal script imports etc -->
<script src="./jquery.min.js"></script>
<!-- Insert this line after script imports -->
<script>
if (window.module) module = window.module;
</script>
<script src="src/core/renderer.js"></script>
</body>
</html>