cpolis/web/templates/editor.html

13 lines
330 B
HTML
Raw Normal View History

{{define "page-content"}}
<form>
2024-02-18 12:41:49 +01:00
<input type="text" name="editor-title" value="Titel">
<textarea name="editor-desc"></textarea>
2024-02-18 12:41:49 +01:00
<textarea name="editor-text"></textarea>
2024-02-18 10:48:37 +01:00
<input type="submit" value="Senden" hx-post="/finished-edit/" hx-target="#page-content">
</form>
{{end}}
2024-02-18 10:48:37 +01:00
{{define "html-result"}}
{{.}}
{{end}}