cpolis/web/templates/add-tag.html

11 lines
297 B
HTML
Raw Permalink Normal View History

2024-03-03 13:56:49 +01:00
{{define "page-content"}}
<h2>Neuer Benutzer</h2>
2024-03-28 08:41:38 +01:00
2024-03-03 13:56:49 +01:00
<form>
<input required name="tag" placeholder="Tag" type="text" />
<input type="submit" value="Anlegen" hx-post="/add-tag/" hx-target="#page-content" />
</form>
2024-03-28 08:41:38 +01:00
2024-03-03 13:56:49 +01:00
<button hx-get="/hub/" hx-target="#page-content">Abbrechen</button>
{{end}}