This repository has been archived by the owner on Aug 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.47 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" />
<title>GNG Launcher</title>
<script type="module" src="./src/renderer.js"></script>
</head>
<body>
<header>
<span class="title">GNG Launcher</span>
<div class="window-actions">
<div class="window-action-button window-action-min">
<i class="fa-solid fa-window-minimize"></i>
</div>
<div class="window-action-button window-action-max">
<i class="fa-solid fa-window-maximize"></i>
</div>
<div class="window-action-button window-action-close">
<i class="fa-solid fa-xmark"></i>
</div>
</div>
</header>
<div class="settings">
<i class="fa-solid fa-gear"></i>
<span>Settings</span>
</div>
<main>
<div class="install" hidden>
<h1>Install</h1>
<p>Installs the latest version of GNG onto your system.</p>
<button class="install-btn">Install</button>
<h2>Already Installed></h2>
<p>Reset Install Directory.</p>
<button class="reset-dir-btn">Reset Install Directory</button>
</div>
<div class="launch">
<h1>Launch</h1>
<p>Launches the latest version of GNG installed on your system.</p>
<button class="launch-btn">Launch</button>
<h2>Not Launching?</h2>
<p>Try backing up stats and reinstalling.</p>
<button class="reinstall-btn">Reinstall / Update</button>
</div>
</main>
</body>
</html>