-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsettings.html
36 lines (36 loc) · 1.37 KB
/
settings.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script>require('electron-connect').client.create()</script>
<script src="src/js/settings.js"></script>
<title>Garry's Mod Addon Tool</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<link rel="stylesheet" href="src/css/style.css">
</head>
<body>
<div id="main_titlebar">
<div class="main_title">
<p>Settings</p>
</div>
<div class="main_buttons">
<p id="closeApp" title="Exit">X</p>
</div>
</div>
<div id="settings">
<header>
<img src="src/img/icon.png" alt="Icon">
<div><p><a id="currentAppVersion" href="https://github.com/Leeous/gmod-addon-tool/releases/tag/v2.1" target="_blank">Version 2.1</a></p></div>
</header>
<main>
<button class="button_normal" id="openConsole">View Console Output</button>
<button class="button_normal" id="resetSettings">Reset Settings</button>
<div>
<button id="blueMode" class="button_normal">Blue</button>
<button id="darkMode" class="button_normal">Dark</button>
</div>
</main>
</div>
</body>
</html>