2022-09-19 09:56:55 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2023-01-14 01:26:26 +01:00
|
|
|
|
|
|
|
<head>
|
2022-09-19 09:56:55 +02:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>Sectorfile Updater</title>
|
|
|
|
<link rel="stylesheet" href="index.css" />
|
2023-01-14 01:26:26 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2022-10-07 00:07:54 +02:00
|
|
|
<button id="extract">Extract ZIP</button>
|
2022-09-25 10:12:02 +02:00
|
|
|
<p>Input Directory</p>
|
2022-12-11 18:23:59 +01:00
|
|
|
<input type="text" id="dirBox" name="name" size="80" readonly />
|
2022-10-07 00:07:54 +02:00
|
|
|
<progress id="progressbar" max="100" value="0"></progress>
|
2022-11-06 00:39:04 +01:00
|
|
|
|
|
|
|
<button id="update">Check for update</button>
|
|
|
|
|
2023-01-01 14:36:22 +01:00
|
|
|
<select id="gng"></select>
|
|
|
|
<select id="files"></select>
|
2022-11-06 00:39:04 +01:00
|
|
|
|
2022-12-11 18:23:59 +01:00
|
|
|
<button id="test">Test BTN</button>
|
2022-12-30 18:13:11 +01:00
|
|
|
|
|
|
|
<div id="login">
|
2023-01-14 01:26:26 +01:00
|
|
|
<p>Username</p>
|
|
|
|
<input type="text" id="username" />
|
|
|
|
<input type="checkbox" id="saveuser" />
|
|
|
|
<div class="tooltip">
|
|
|
|
<p>Password</p>
|
|
|
|
<input type="password" id="password" />
|
|
|
|
<input type="checkbox" id="savepw" />
|
|
|
|
<span class="tooltiptext">Please be aware that the password you enter will be stored in plain
|
|
|
|
text in our system. This means that it will not be encrypted or
|
|
|
|
otherwise secured. We recommend that you do not use a password that
|
|
|
|
you also use for other important accounts, such as your email or
|
|
|
|
banking. Please use caution when entering your password and consider
|
|
|
|
using a unique and strong password specifically for this
|
|
|
|
account.</span>
|
|
|
|
</div>
|
|
|
|
<div class="tooltip">
|
|
|
|
<p>Password Hoppie</p>
|
|
|
|
<input type="password" id="passwordhoppie" />
|
|
|
|
<input type="checkbox" id="savepwhoppie" />
|
|
|
|
<span class="tooltiptext">Please be aware that the password you enter will be stored in plain
|
|
|
|
text in our system. This means that it will not be encrypted or
|
|
|
|
otherwise secured. We recommend that you do not use a password that
|
|
|
|
you also use for other important accounts, such as your email or
|
|
|
|
banking. Please use caution when entering your password and consider
|
|
|
|
using a unique and strong password specifically for this
|
|
|
|
account.</span>
|
|
|
|
</div>
|
|
|
|
<button id="savecred">Save your Credentials</button>
|
2022-12-30 18:13:11 +01:00
|
|
|
</div>
|
|
|
|
|
2022-10-02 21:35:42 +02:00
|
|
|
<script src="./renderer.js"></script>
|
2023-01-14 01:26:26 +01:00
|
|
|
<script src="./html_elements.js"></script>
|
|
|
|
<script src="./startup.js"></script>
|
|
|
|
<script src="./save.js"></script>
|
|
|
|
<script src="./getFiles.js"></script>
|
|
|
|
<script src="./unzip.js"></script>
|
|
|
|
<script src="./data_structure.js"></script>
|
|
|
|
<script src="./download.js"></script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|