-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
51 lines (47 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Theme Of The Day</title>
<meta property="og:title" content="Theme Of The Day">
<meta property="og:description"
content="A little tool to access the Theme Of The Day without having to open the game.">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Background Image -->
<!-- Loading Screen -->
<div id="loading-screen">
<div id="progress-bar-container">
<div id="progress-bar"></div>
</div>
<p id="progress-text">0%</p>
</div>
<div class="background"></div>
<!-- Content Container -->
<div class="topright">
<div id="language-selector">
<label for="lang-select">Choose Language:</label>
<select id="lang-select">
<!-- Options will be dynamically added here -->
</select>
</div>
</div>
<div class="topleft">
<a href="/collection">Collection</a>
</div>
</div>
<div class="middle">
<div class="content">
<!-- Element to display the text -->
<div id="langs-output">
<!-- The English text will be shown here by default -->
</div>
</div>
</div>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js"></script>
<script src="app.js"></script>
</body>
</html>