mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
18 lines
658 B
HTML
18 lines
658 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}External Service Account{% endblock %}
|
|
|
|
{% block content %}
|
|
<p><b>Warning</b>: This will delete your account on {{ acc.service.name }}, you will no longer be able to login and in some situtations unable to
|
|
create a new account until fixed by a Sysop. If you are having issues logging in then please <b>use the password reset function first!</b></p>
|
|
|
|
<p>If you are sure, then please click confirm</p>
|
|
|
|
<form action="{% url sso.views.service_del acc.id %}" method="post">
|
|
{% csrf_token %}
|
|
<input name="confirm-delete" type="hidden" value="1"/>
|
|
<input type="submit" value="Confirm Delete" />
|
|
</form>
|
|
{% endblock %}
|
|
|