Module-HTTPD/src/main/resources/httpd/schematic_upload.html

12 lines
513 B
HTML
Raw Normal View History

2022-04-18 03:05:20 +00:00
Schematics
SCHEMATICS
<h2>Plex HTTPD</h2>
2022-04-18 04:30:00 +00:00
<label for="formFile" class="form-label">Please select a schematic file to upload.</label>
<div class="mb-3 p-3">
<form class="input-group justify-content-center" enctype="multipart/form-data" method="post" action="/api/schematics/uploading">
<label class="btn btn-primary">
Browse <input type="file" name="file" id="formFile" hidden>
</label>
2022-04-18 03:05:20 +00:00
<input type="submit" class="btn btn-outline-primary" value="Upload">
</form>
</div>