21 lines
1.3 KiB
HTML
21 lines
1.3 KiB
HTML
{%- from 'common/macros.html' import subheader -%}
|
|
{%- extends 'base.html' -%}
|
|
{%- block title -%}account deletion confirmation{%- endblock -%}
|
|
{%- block content -%}
|
|
{%- set sub -%}
|
|
<a href="{{url_for('users.settings', username=get_active_user().username)}}">← Back to settings</a>
|
|
{%- endset -%}
|
|
{{- subheader('Confirm account deletion', sub) -}}
|
|
<div class="plank">
|
|
<form class="full-width" method="POST">
|
|
<p>Are you sure you want to delete your account on {{ config.SITE_NAME }}? <strong>This action is irreversible.</strong> Your posts and threads will remain accessible to preserve history but will be de-personalized, showing up as authored by a system user. Posts that @mention you will also mention the system user instead.</p>
|
|
<p>If you wish for any and all content relating to you to be removed, you will have to <a href="{{url_for('guides.contact')}}" target="_blank">contact {{ config.SITE_NAME }}'s administrators separately.</a></p>
|
|
<p>If you are sure, please confirm your current password below.</p>
|
|
<label for="password">Confirm password</label>
|
|
{{csrf_input() | safe}}
|
|
<input type="password" id="password" name="password" required autocomplete="current-password">
|
|
<input type="submit" class="critical" value="Permanently delete account">
|
|
</form>
|
|
</div>
|
|
{%- endblock -%}
|