mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
20 lines
676 B
HTML
20 lines
676 B
HTML
{% extends 'users/profile_base.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<div class="container flex justify-center flex-col items-center rounded bg-white dark:bg-charcoal p-4 mt-6 w-1/2 m-auto mb-4">
|
|
<h3>{% trans 'Delete Account Immediately' %}</h3>
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{% for field in form %}
|
|
<div class="mb-4">
|
|
{% include 'includes/_form_input.html' %}
|
|
</div>
|
|
{% endfor %}
|
|
<button class="py-2 px-3 mr-4 text-sm text-white rounded bg-orange" type="submit">{% trans 'Confirm' %}</button>
|
|
<a href="{% url 'profile-account' %}">{% trans 'Cancel' %}</a>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|