]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/401.html
c689f53f81e2a134743abe59286882a58db4a410
[osqa.git] / forum / skins / default / templates / 401.html
1 {% extends "base_content.html" %}
2 {% load i18n %}
3 {% block title %}{% trans "Not logged in" %}{% endblock %}
4 {% block meta %}
5     <!-- <meta http-equiv="refresh" content="5;url={% url auth_signin %}"> -->
6 {% endblock %}
7 {% block forestyle%}
8     <style type="text/css">
9                 form input { margin-right: 5px; }
10         </style>
11 {% endblock %}
12 {% block forejs %}
13        <script type="text/javascript">
14         $().ready(function(){
15             window.setInterval(function() {
16                 $('#redirect_loader').html($('#redirect_loader').html() + '.')
17             }, 800);
18
19             window.setTimeout(function() {
20                 window.location = "{% url auth_signin %}";
21             }, 5000);
22         });
23
24         </script>
25 {% endblock %}
26 {% block content %}
27 <div id="main-bar" class="headNormal">
28     {% trans "Not logged in" %}
29 </div>
30 <div id="main-body" class="">
31     <div style="padding:5px 0px 10px 0;line-height:25px;">
32         <h3>{% trans "You are not logged in..." %}</h3>
33         <div style="margin-top:5px">
34             {% trans "...and the resource you're trying to access is pretocted." %}
35             <p>
36                 {% trans "Redirecting to the login page." %}<span id="redirect_loader"></span>
37             </p>
38             <p>
39                 {% trans "If you're not automatically redirected in 5 seconds, please click" %}
40                 <a href="{% url auth_signin %}">{% trans "here" %}</a>.
41             </p>
42         </div>
43     </div>
44
45 </div>
46 {% endblock %}