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>
|
2022-10-02 21:35:42 +02:00
|
|
|
<button id="download" class"button is-primary">Download</button>
|
2022-10-14 13:01:49 +02:00
|
|
|
<button id="dirs">Select Directory</button>
|
2022-10-07 00:07:54 +02:00
|
|
|
<button id="extract">Extract ZIP</button>
|
|
|
|
<p id="ouput">Output Test here</p>
|
2022-10-03 13:44:41 +02:00
|
|
|
|
2022-09-25 10:12:02 +02:00
|
|
|
<p>Input URL</p>
|
2022-11-06 21:19:00 +01:00
|
|
|
<input type="text" id="urlBox" name="name" size="80" readonly>
|
2022-09-25 10:12:02 +02:00
|
|
|
<p>Input Directory</p>
|
2022-11-06 21:19:00 +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>
|
|
|
|
|
|
|
|
<select name="Dropme Down" id="gng"></select>
|
|
|
|
<button id="getFiles">Get Files</button>
|
|
|
|
<select name="Dropme Down #2" id="files"></select>
|
|
|
|
|
2022-10-02 21:35:42 +02:00
|
|
|
<script src="./renderer.js"></script>
|
2022-09-19 09:56:55 +02:00
|
|
|
</body>
|
2022-11-06 00:39:04 +01:00
|
|
|
</html>
|