Files
Vineless/pages/picker/filePicker.html
Ingan121 4735e782b5 * Allow importing multiple devices at the same time
* 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
2025-08-31 20:43:22 +09:00

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>