summaryrefslogtreecommitdiffstats
path: root/forum/templates/logout.html
diff options
context:
space:
mode:
Diffstat (limited to 'forum/templates/logout.html')
-rw-r--r--forum/templates/logout.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/forum/templates/logout.html b/forum/templates/logout.html
new file mode 100644
index 00000000..650ba044
--- /dev/null
+++ b/forum/templates/logout.html
@@ -0,0 +1,23 @@
+{% extends "base_content.html" %}
+<!-- template logout.html -->
+{% load extra_tags %}
+{% load humanize %}
+{% load i18n %}
+{% block title %}{% spaceless %}{% trans "Logout" %}{% endspaceless %}{% endblock %}
+{% block forejs %}
+ <script type="text/javascript">
+ $().ready(function(){
+ $('#btLogout').bind('click', function(){ window.location.href='{% url user_signout %}?next={{ next }}'; });
+ });
+ </script>
+{% endblock %}
+{% block content %}
+<div class="headNormal">
+ {% trans "Logout" %}
+</div>
+<div id="main-body" style="width:100%">
+ <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">-->
+</div>
+{% endblock %}
+<!-- end logout.html -->