mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-22 22:29:34 +00:00
17 lines
637 B
HTML
17 lines
637 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="/profile/del/service/{{ acc.id }}/" method="post">
|
|
<input name="confirm-delete" type="hidden" value="1"/>
|
|
<input type="submit" value="Confirm Delete" />
|
|
</form>
|
|
{% endblock %}
|
|
|