Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / third_party_check_local.html @ 27e51b28

History | View | Annotate | Download (1014 Bytes)

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

    
3
{% block page.title %}
4
    Signup
5
{% endblock %}
6

    
7
{% block body.left %}
8
    <img class="pic" src="{{ IM_STATIC_URL }}images/pictures/accounts_3.png" />
9
{% endblock body.left %}
10

    
11
{% block body.right %}
12
    {% if "local" in im_modules %}
13
      <div class="form-stacked">
14
          <h2><span>Already have an account?</span></h2>
15
          {% if can_add %}
16
          <a href="{{ add_url }}"
17
          class="button wide">
18
          <span class="left">YES</span>
19
          <span class="action-desc right">I want to add '{{ provider_title }}' as a new login method for my existing account</span>
20
      </a>
21
      {% endif %}
22
      {% if can_create %}
23
        <a href="{{ signup_url }}" class="button wide">
24
          <span class="left">NO</span>
25
          <span class="right action-desc">I want to create a new account</span>
26
      </a>
27
      {% endif %}
28
      <Br /><br />
29
      <a style="float:right" href="{% url index %}">CANCEL</a>
30
      </div>
31
    {% endif %}
32
{% endblock %}