Spaces:
Sleeping
Sleeping
| {% extends "base.html" %} | |
| {% block content %} | |
| <div class="card"> | |
| <h2>Delete Account</h2> | |
| <p class="subtitle"> | |
| This will permanently delete your account and all associated analysis history. | |
| This action cannot be undone. | |
| </p> | |
| <form method="POST"> | |
| <input type="hidden" name="csrf_token" value="{{ csrf_token }}"> | |
| <label>Confirm your password to continue</label> | |
| <input type="password" name="password" required | |
| style="width: 100%; padding: 8px; margin-bottom: 16px;"> | |
| <button type="submit" class="btn-danger" | |
| onclick="return confirm('Are you sure you want to permanently delete your account and all associated data?');"> | |
| Permanently Delete My Account | |
| </button> | |
| </form> | |
| </div> | |
| {% endblock %} | |