hibiscus/pages/index.html

7 lines
225 B
HTML
Raw Normal View History

{{define "main"}}
<form method="POST">
2024-03-29 14:58:24 +03:00
<h2><label for="day">Your day so far:</label></h2>
<textarea id="day" cols="40" rows="15" name="day">{{ .Day }}</textarea>
<button type="submit">Save</button>
</form>
{{end}}