Reorganise the file structure into a project tree

This commit is contained in:
2011-03-11 12:58:50 +00:00
parent 58b1691638
commit 3686aa7523
226 changed files with 7 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
{% 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 %}