summaryrefslogtreecommitdiffstats
path: root/templates/logout.html
blob: e05a4328c4ff47783e132076322cf8a11d17a378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% 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">-->
    <br><br>
</div>
{% endblock %}
<!-- end logout.html -->