Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / login_base.html @ 34a857c0

History | View | Annotate | Download (892 Bytes)

1
{% extends 'im/base_two_cols.html'%}
2
{% load i18n %}
3

    
4
{% block signup_class %}hidden{% endblock %}
5

    
6
{% block body.left %}
7
  <img class="pic" src="{{ IM_STATIC_URL }}images/porta.png" />
8
{% endblock body.left %}
9
    
10
{% block body.right %} 
11
    
12
    <div class="login-section">
13

    
14
      <h2 class="clearfix"><span class="title">LOGIN</span> <span class="header-actions">
15
        <a href="{% url signup %}">{% trans "Sign up" %}</a></span>
16
      </h2>
17
      <div class="main-login-method">
18
        {% with 1 as is_master %}
19
        {% include master_auth_provider.get_login_template %}
20
        {% endwith %}
21
      </div>
22
      <div class="extralogin">
23
      {% for provider in auth_providers %}
24
        {% if not provider == master_auth_provider %}
25
          {% include provider.get_login_prompt_template %}
26
        {% endif %}
27
      {% endfor %}
28
    </div>
29
    </div>
30
 
31
{% endblock body.right%}