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-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-21 18:25:29 +02:00
|
|
|
|
|
|
|
<input type="file" id="dirs" webkitdirectory directory/>
|
2022-09-19 09:56:55 +02:00
|
|
|
</body>
|
|
|
|
</html>
|