minty-cafe/web/handler/html/confirm_remove_status.html

11 lines
313 B
HTML
Raw Normal View History

2026-03-11 19:14:41 +00:00
{{ define "content" }}
<section>
Are you sure you you want to delete the following status?
<p>{{ .status.Content }}</p>
<form action="/remove?id={{ .status.Id }}" method="post">
{{ .csrfField }}
<input type="hidden" name="id"/>
<input type="submit" value="Submit">
</form>
</section>
{{ end }}