Files
x/cmd/web-tinkertoy/fortunesupload.tmpl
T
2020-05-20 23:18:58 -07:00

16 lines
257 B
Cheetah

<html>
<body>
{{if (eq .Message "")}}
<form
enctype="multipart/form-data"
method="post">
<input type="file" name="fortunes" />
<input type="submit" value="upload" />
</form>
{{else}}
{{.Message}}
{{end}}
</body>
</html>