summaryrefslogtreecommitdiffstats
path: root/mansrht/templates/delete.html
diff options
context:
space:
mode:
Diffstat (limited to 'mansrht/templates/delete.html')
-rw-r--r--mansrht/templates/delete.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/mansrht/templates/delete.html b/mansrht/templates/delete.html
new file mode 100644
index 0000000..4ecd974
--- /dev/null
+++ b/mansrht/templates/delete.html
@@ -0,0 +1,20 @@
+{% extends "manage.html" %}
+{% block content %}
+<div class="row">
+ <div class="col-md-12">
+ <p>This will permanently delete the wiki.
+ <strong>~{{ owner.username }}/{{ wiki.name }}</strong>.
+ This cannot be undone.
+ </p>
+ <form method="POST">
+ {{csrf_token()}}
+ <button type="submit" class="btn btn-danger">
+ Proceed and delete {{icon("caret-right")}}
+ </button>
+ <a
+ class="btn btn-default"
+ href="{{ url_for("html.user_content",
+ owner_name=owner.username, wiki_name=wiki.name) }}"
+ >Nevermind</a>
+ </form>
+{% endblock %}