Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (968 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
{% comment %}{% include "im/services_description.html" %}{% endcomment %}
10
{% endblock body.left %}
11

    
12
{% block body.right %}
13
    {% if "local" in im_modules %}
14
      <div class="form-stacked">
15
        <h2><span>Already have an account?</span></h2>
16
        <a href="{% url astakos.im.views.index %}?key={{ token }}"
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
        <a href="{{ signup_url }}?key={{ token }}" class="button wide">
22
          <span class="left">NO</span>
23
          <span class="right action-desc">I want to create a new account</span>
24
        </a>
25
      </div>
26
    {% endif %}
27
{% endblock %}