mirror of
https://github.com/Ingan121/Vineless.git
synced 2026-04-11 23:18:26 +00:00
* Devices of different types can be imported at the same time by using drag and drop or just select all files in the type selector of the file dialog
22 lines
834 B
HTML
22 lines
834 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Choose a device file</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="filePicker.css">
|
|
</head>
|
|
<body>
|
|
<p>Choose a device file or drop it here to import</p>
|
|
<input type="file" id="fileInput" multiple />
|
|
<script type="module" src="filePicker.js" defer></script>
|
|
<br><br><br><br><br><br><br><br>
|
|
<!--
|
|
feature primarily made for mobile browsers with broken file picker;
|
|
put it below sight for normal popup windows on desktops
|
|
-->
|
|
<p>Or download and import from a remote URL:</p>
|
|
<input type="url" id="urlInput"/>
|
|
<button id="urlImport">Import</button>
|
|
</body>
|
|
</html> |