Files
test-auth/app/reddit/templates/reddit/delete.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 %}