Add web/templates/settings/delete_all_confirm.html

This commit is contained in:
Joshua Laymon 2025-08-22 00:09:18 +00:00
parent 0e0ef994bc
commit e304f29958

View 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 %}