59 lines
2.1 KiB
HTML
Raw Normal View History

2022-09-19 09:56:55 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Sectorfile Updater</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<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 />
<progress id="progressbar" max="100" value="0"></progress>
<button id="update">Check for update</button>
<select id="gng"></select>
<select id="files"></select>
2022-12-11 18:23:59 +01:00
<button id="test">Test BTN</button>
<div id="login">
<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>
</div>
2022-10-02 21:35:42 +02:00
<script src="./renderer.js"></script>
2022-09-19 09:56:55 +02:00
</body>
2022-12-11 18:23:59 +01:00
</html>