cpolis/web/templates/add-tag.html

13 lines
395 B
HTML
Raw 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>
<input class="w-full" name="tag" placeholder="Tag eingeben" required type="text" />
2024-04-01 14:22:59 +02:00
<div class="btn-area">
2024-08-30 15:58:09 +02:00
<input class="action-btn" type="submit" value="Anlegen" hx-post="/tag/add" hx-target="#page-content" />
<button class="btn" hx-get="/hub" hx-target="#page-content">Abbrechen</button>
2024-04-01 14:22:59 +02:00
</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}}