blob: a3beae9d7aba0ca548a6a0efa36f985a5bab0209 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{{template "header.html" "Upload images from file!"}}
{{template "navbar.html"}}
{{template "modal_uploaded.html"}}
{{template "modal_error.html"}}
<div class="container">
<div class="row">
<div class="col-md-12">
<form class="form-horizontal" method="POST" enctype="multipart/form-data">
<fieldset>
<legend>
<h2>File Upload</h2>
<p>Search for a file locally to upload.</p>
</legend>
<div class="well">
<div class="form-group">
<div class="col-md-4">
<input id="file" name="image" type="file" data-filename-placement="inside" title="Search for a file to add">
</div>
</div>
<div class="form-group">
<div class="col-md-4">
<a href="/api/v1/file" id="imageSubmit" name="imageSubmit" class="btn btn-material-indigo-A700 btn-upload" autocomplete="off">Upload!</a>
</div>
</div>
</div>
</fieldset>
</form>
</div>
</div>
</div>
{{template "footer.html"}}
|