s1llyw0rdz/web/handler/html/confirm_remove_status.html
2021-12-22 12:04:24 +01:00

11 lines
No EOL
313 B
HTML

{{ 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 }}