s1llyw0rdz/web/handler/html/confirm_remove_status.html

11 lines
313 B
HTML
Raw Permalink Normal View History

2021-11-22 13:30:20 +00:00
{{ define "content" }}
2021-11-28 07:40:11 +00:00
<section>
Are you sure you you want to delete the following status?
<p>{{ .status.Content }}</p>
<form action="/remove?id={{ .status.Id }}" method="post">
2021-12-22 11:04:24 +00:00
{{ .csrfField }}
2021-11-28 07:40:11 +00:00
<input type="hidden" name="id"/>
<input type="submit" value="Submit">
</form>
</section>
2021-11-22 13:30:20 +00:00
{{ end }}