2022-09-19 09:56:55 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>Sectorfile Updater</title>
|
2022-10-02 21:35:42 +02:00
|
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
2022-09-19 09:56:55 +02:00
|
|
|
<link rel="stylesheet" href="index.css" />
|
2022-10-02 21:35:42 +02:00
|
|
|
<script src="./renderer.js"></script>
|
2022-09-19 09:56:55 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-10-02 21:35:42 +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>
|
2022-10-02 21:35:42 +02:00
|
|
|
<button id="selectPathBtn" class"button is-warning">Path</button> -->
|
|
|
|
<button id="download" class"button is-primary">Download</button>
|
|
|
|
<button id="openButton">Open</button>
|
|
|
|
<!--<h1>Hello World!</h1>
|
2022-09-19 09:56:55 +02:00
|
|
|
<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">
|
2022-10-02 21:35:42 +02:00
|
|
|
<progress id="file" max="100" value="70"></progress>-->
|
2022-09-21 18:25:29 +02:00
|
|
|
<input type="file" id="dirs" webkitdirectory directory/>
|
2022-10-02 21:35:42 +02:00
|
|
|
<button type="button" id="btn">Open a File</button>
|
|
|
|
File path: <strong id="filePath"></strong>
|
|
|
|
<script src="./renderer.js"></script>
|
2022-09-19 09:56:55 +02:00
|
|
|
</body>
|
|
|
|
</html>
|