summaryrefslogtreecommitdiffstats
path: root/templates/wormhole-send.html.template
blob: 5b06c5f7698de232a3f2dbcf96ab789077aa4690 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{define "head"}}
	<script src="/static/htmx.min.js"></script>
	<script src="/static/htmx-ext-sse.js"></script>
	<title>Wormhole</title>
{{end}}

<form
		hx-ext="sse"
		sse-connect="/wormhole/{{.Hole}}/ready"
		hx-post="/wormhole/{{.Hole}}"
		hx-trigger="sse:receiver-ready"
		enctype="multipart/form-data">
	<input type="file" name="file">
</form>