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

13 lines
607 B
HTML
Raw Normal View History

2022-04-18 03:05:20 +00:00
Schematics
SCHEMATICS
2022-04-18 22:02:08 +00:00
<h2>Schematic Upload</h2>
2022-04-18 06:36:45 +00:00
<div class="cos-xs-8 col-lg-5">
2022-04-18 22:02:08 +00:00
<label for="formFile" class="form-label"><h5>Please select a schematic file to upload.</h5></label>
2022-04-18 06:36:45 +00:00
<form class="input-group justify-content-center" enctype="multipart/form-data" method="post"
action="/api/schematics/uploading">
<div class="input-group">
<input type="file" class="form-control" id="formFile" name="file" aria-describedby="formFile" aria-label="Upload">
<button class="btn btn-outline-primary" type="submit">Upload</button>
</div>
2022-04-18 03:05:20 +00:00
</form>
</div>