summaryrefslogtreecommitdiffstats
path: root/templates/logout.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/logout.html')
-rw-r--r--templates/logout.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/logout.html b/templates/logout.html
index 48a2deaf..6270924a 100644
--- a/templates/logout.html
+++ b/templates/logout.html
@@ -1,3 +1,4 @@
+<!-- template logout.html -->
{% extends "base_content.html" %}
{% load extra_tags %}
{% load humanize %}
@@ -6,20 +7,19 @@
{% block forejs %}
<script type="text/javascript">
$().ready(function(){
- $('#btLogout').bind('click', function(){ window.location.href='/account/signout/?next={{ next }}'; });
+ $('#btLogout').bind('click', function(){ window.location.href='{% url user_signout %}?next={{ next }}'; });
});
</script>
{% endblock %}
{% block content %}
<div class="headNormal">
- {% trans "Logout" %}
+ {% trans "Logout" %}
</div>
<div id="main-body" style="width:100%">
- <input id="btLogout" type="button" class="submit" value="OK" style="width:150px">
+ <p>{% trans "As a registered user you can login with your OpenID, log out of the site or permanently remove your account." %}</p>
+ <input id="btLogout" type="button" class="submit" value="{% trans "Logout now" %}"><!-- style="width:150px">-->
<br><br>
</div>
{% endblock %}
-
-
-
+<!-- ent template logout.html -->