blob: e773bc011a82684ca88e2caae37f45fad94eca09 (
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}}
|