2022-09-19 09:56:55 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>Sectorfile Updater</title>
|
2022-09-20 19:14:04 +02:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css"
|
|
|
|
/>
|
2022-09-19 09:56:55 +02:00
|
|
|
<link rel="stylesheet" href="index.css" />
|
2022-09-20 19:14:04 +02:00
|
|
|
<script defer src="render.js"></script>
|
2022-09-19 09:56:55 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-09-25 10:12:02 +02:00
|
|
|
<button id="writeFile" class"button is-primary">Write File</button>
|
2022-09-20 19:14:04 +02:00
|
|
|
<button id="startDownload" class"button is-primary">Start Download</button>
|
|
|
|
<button id="stopDownload" class"button is-warning">Stop Download</button>
|
|
|
|
<button id="startUnzip" class"button is-primary">Start Unzip</button>
|
|
|
|
<button id="stopUnzip" class"button is-warning">Stop Unzip</button>
|
|
|
|
<button id="selectVersionBtn" class"button is-warning">Version</button>
|
|
|
|
<button id="selectPathBtn" class"button is-warning">Path</button>
|
2022-09-19 09:56:55 +02:00
|
|
|
<h1>Hello World!</h1>
|
|
|
|
<p>Welcome to your Electron application.</p>
|
2022-09-25 10:12:02 +02:00
|
|
|
<p>Input Text</p>
|
|
|
|
<input type="text" id="txtBox" name="name" size="80">
|
|
|
|
<p>Input URL</p>
|
|
|
|
<input type="text" id="urlBox" name="name" size="80">
|
|
|
|
<p>Input Directory</p>
|
|
|
|
<input type="text" id="dirBox" name="name" size="80">
|
|
|
|
<progress id="file" max="100" value="70"></progress>
|
2022-09-21 18:25:29 +02:00
|
|
|
<input type="file" id="dirs" webkitdirectory directory/>
|
2022-09-19 09:56:55 +02:00
|
|
|
</body>
|
|
|
|
</html>
|