Spaces:
Sleeping
Sleeping
File size: 836 Bytes
21a8272 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
{% 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 %}
|