102 lines
4.1 KiB
HTML
Raw Normal View History

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>
2023-01-16 01:18:52 +01:00
<button id="select-dir">Select Directory</button>
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>
2023-01-16 01:18:52 +01:00
<p id="progressbarText"></p>
<br>
<select id="gng"></select>
<select id="files"></select>
2023-01-16 01:18:52 +01:00
<button id="download" style="display:block">Download Update</button>
<!-- <button id="download" style="display:none">Download Update</button> -->
2023-01-16 01:18:52 +01:00
<br>
<div id="login">
2023-01-16 01:18:52 +01:00
<select id="rating">
<option id="0">obs</option>
<option id="1">s1</option>
<option id="2">s2</option>
<option id="3">s3</option>
<option id="4">c1</option>
<option id="6">c3</option>
<option id="7">i1</option>
<option id="9">i3</option>
<option id="10">sup</option>
<option id="11">adm</option>
</select>
<form>
<p>Realname</p>
<input type="text" id="realname" />
<input type="checkbox" id="saverealname" />
<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>
</form>
</div>
2023-01-16 01:18:52 +01:00
<form>
If you want Eurosounds, please check the box below and click the download button. <br>
<input type="checkbox" id="download-checkbox" onclick="toggleDownloadButton()"> I confirm that I would like to download the file.
<br>
<a href="https://cdn.ganderoceanic.ca/resources/files/eurosounds/eurosounds-8apr20.zip" id="download-link" style="display:none">Download</a>
</form>
<script>
function toggleDownloadButton() {
const downloadLink = document.getElementById("download-link");
if (document.getElementById("download-checkbox").checked) {
downloadLink.style.display = "block";
} else {
downloadLink.style.display = "none";
}
}
</script>
2023-01-14 01:26:26 +01:00
<script src="./html_elements.js"></script>
2023-01-16 01:18:52 +01:00
<script src="./renderer.js"></script>
2023-01-14 01:26:26 +01:00
<script src="./startup.js"></script>
<script src="./save.js"></script>
<script src="./getFiles.js"></script>
<script src="./data_structure.js"></script>
<script src="./download.js"></script>
2023-01-16 01:18:52 +01:00
<script src="./git_ops.js"></script>
<script src="./append_to_file.js"></script>
2023-01-14 01:26:26 +01:00
</body>
</html>