cpolis/web/templates/add-tag.html

13 lines
382 B
HTML
Raw Permalink Normal View History

2024-03-03 13:56:49 +01:00
{{define "page-content"}}
2024-03-31 05:00:57 +02:00
<h2>Neuer Tag</h2>
2024-03-28 08:41:38 +01:00
2024-03-03 13:56:49 +01:00
<form>
2024-04-01 14:22:59 +02:00
<input required name="tag" placeholder="Tag eingeben" type="text" />
<div class="btn-area">
<input class="action-btn" type="submit" value="Anlegen" hx-post="/add-tag/" hx-target="#page-content" />
<button class="btn" hx-get="/hub/" hx-target="#page-content">Abbrechen</button>
</div>
2024-03-03 13:56:49 +01:00
</form>
2024-03-28 08:41:38 +01:00
2024-03-03 13:56:49 +01:00
{{end}}