Skip to main content

max / makenotwork

1.2 KB · 37 lines History Blame Raw
1 {% extends "base.html" %}
2
3 {% block title %}Confirm Account Deletion - Makenot.work{% endblock %}
4
5 {% block body_attrs %} class="centered-page confirm-delete-page"{% endblock %}
6
7 {% block head %}
8 {% endblock %}
9
10 {% block content %}
11 <h1 class="brand-h1">Makenot<span class="dot">.</span>work</h1>
12 <div class="login-container">
13 <div class="login-form">
14 <h2 class="subtitle-h2">Delete Account</h2>
15
16 <div class="warning-box">
17 <p><strong>This action is permanent and cannot be undone.</strong></p>
18 <p>All your data, projects, and content will be permanently deleted.</p>
19 </div>
20
21 <form method="post" action="/confirm-delete">
22 <input type="hidden" name="user" value="{{ user }}" />
23 <input type="hidden" name="expires" value="{{ expires }}" />
24 <input type="hidden" name="sig" value="{{ sig }}" />
25
26 <button type="submit" class="btn-danger">
27 Delete My Account Permanently
28 </button>
29 </form>
30
31 <div class="foot-link mt-4">
32 <a href="/dashboard">Cancel and go to dashboard<span class="dot">.</span></a>
33 </div>
34 </div>
35 </div>
36 {% endblock %}
37