Add web/templates/settings/delete_all_confirm.html
This commit is contained in:
parent
0e0ef994bc
commit
e304f29958
26
web/templates/settings/delete_all_confirm.html
Normal file
26
web/templates/settings/delete_all_confirm.html
Normal file
@ -0,0 +1,26 @@
|
||||
{% extends "base.html" %}
|
||||
{% block body_class %}themed-bg{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<div class="card" style="border:1px solid #fecaca; background:#fef2f2;">
|
||||
<h1 class="page-title" style="color:#991b1b;">Delete All Illustrations</h1>
|
||||
<p class="lead" style="color:#7f1d1d;">
|
||||
This will permanently delete <strong>all</strong> illustration records.
|
||||
Export a backup first if you might need to restore.
|
||||
</p>
|
||||
|
||||
<form method="post" style="margin-top:12px;">
|
||||
{% csrf_token %}
|
||||
<input type="hidden" name="confirm" value="yes">
|
||||
<div class="result-toolbar">
|
||||
<div class="rt-left"></div>
|
||||
<div class="rt-right">
|
||||
<a class="btn btn-secondary" href="{% url 'settings_home' %}">Cancel</a>
|
||||
<button class="btn btn-danger" type="submit">Delete Everything</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Loading…
Reference in New Issue
Block a user