summaryrefslogtreecommitdiffstats
path: root/templates/logout.html
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-07-10 19:14:09 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-07-10 19:14:09 -0400
commit5b45e526c74faf55110ff0afdcba19797d7e0f4d (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /templates/logout.html
parentbb801f2bbd9f26bebca846b71e8947a1951f86a5 (diff)
downloadaskbot-5b45e526c74faf55110ff0afdcba19797d7e0f4d.tar.gz
askbot-5b45e526c74faf55110ff0afdcba19797d7e0f4d.tar.bz2
askbot-5b45e526c74faf55110ff0afdcba19797d7e0f4d.zip
deleted all
Diffstat (limited to 'templates/logout.html')
-rw-r--r--templates/logout.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/templates/logout.html b/templates/logout.html
deleted file mode 100644
index b13e5e25..00000000
--- a/templates/logout.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!-- template logout.html -->
-{% extends "base_content.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='/account/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 %}
-<!-- ent template logout.html -->