blob: 9c770c1d0292591165b38875cdb5c37609a2984b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{{define "head" -}}
<title>Wormhole</title>
{{- end}}
{{define "body" -}}
<form
method="post"
enctype="multipart/form-data"
class="wormhole">
<ol>
<li>
<input type="file" name="file" multiple>
</li>
<li>
<input type="submit" value="Upload" class="wormhole-input">
{{- if .Err}}
<p><img class="inline" src="/static/confused.webp" alt="A logical dragon maid"><span style="color:red">{{.Err}}</span></p>
{{- end}}
</li>
</ol>
Files will be deleted after 1 hour
</form>
{{- end}}
|