1 {% extends "base_content.html" %}
 
   3 {% block title %}{% trans "Not logged in" %}{% endblock %}
 
   5     <!-- <meta http-equiv="refresh" content="5;url={% url "auth_signin" %}"> -->
 
   8     <style type="text/css">
 
   9                 form input { margin-right: 5px; }
 
  13        <script type="text/javascript">
 
  15             window.setInterval(function() {
 
  16                 $('#redirect_loader').html($('#redirect_loader').html() + '.')
 
  19             window.setTimeout(function() {
 
  20                 window.location = "{% url "auth_signin" %}";
 
  27 <div id="main-bar" class="headNormal">
 
  28     {% trans "Not logged in" %}
 
  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 protected." %}
 
  36                 {% trans "Redirecting to the login page." %}<span id="redirect_loader"></span>
 
  39                 {% trans "If you're not automatically redirected in 5 seconds, please click" %}
 
  40                 <a href="{% url "auth_signin" %}">{% trans "here" %}</a>.