mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-24 15:19:30 +00:00
13 lines
389 B
HTML
13 lines
389 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Delete Reddit Account{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Delete Reddit Account</h1>
|
|
<p>Do you wish to delete the Reddit account {{ account.username }} from Auth?</p>
|
|
<form action="{% url reddit-delaccount account.id %}" method="post">
|
|
<input type="submit" value="Delete Account" class="btn warning"/>
|
|
{% csrf_token %}
|
|
</form>
|
|
{% endblock %}
|