blob: 6f7ad1b5a6cfedb398a57d2cd6cfd20bcc8d43fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{{define "head"}}
<title>Wormhole</title>
{{end}}
<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>
|