s1llyw0rdz/web/handler/html/confirm_remove_status.html

8 lines
266 B
HTML
Raw Normal View History

2021-11-22 13:30:20 +00:00
{{ define "content" }}
Are you sure you you want to delete the following status?
<p>{{ .status.Content }}</p>
2021-11-27 09:39:34 +00:00
<form action="/status-remove?id={{ .status.Id }}" method="post">
2021-11-22 20:23:30 +00:00
<input type="hidden" name="id"/>
2021-11-22 13:30:20 +00:00
<input type="submit" value="Submit">
</form>
{{ end }}