mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-06-24 08:36:17 +00:00
17 lines
947 B
HTML
17 lines
947 B
HTML
{% extends "base.html" %}
|
|
{% from "macros/input.html" import text %}
|
|
|
|
{% block content %}
|
|
<div class="block secondary">
|
|
<h2>Delete account</h2>
|
|
<p>
|
|
Deleting your account will delete <span style="color: rgb(var(--secondary)) !important;">EVERYTHING</span> on your account, including <span style="color: rgb(var(--secondary)) !important;">ALL</span> your ever submitted scores.
|
|
There is <span style="color: rgb(var(--secondary)) !important;">NO WAY</span> to recover your account from this, are you sure you want todo this?
|
|
</p>
|
|
<form action="{{ url_for('account.delete_account') }}" method="POST">
|
|
{{ text(id="username", name="username", required=True) }}
|
|
{{ text(id="password", name="password", type="password", required=True) }}
|
|
<button type="submit" class="button secondary">Delete account forever</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|