blob: 238719a9d7607abbd9f32ee4ee9b3841ac468579 (
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">
</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>
|