Commit | Line | Data |
---|---|---|
ffcc8e27 RB |
1 | {% extends "sentry/layout.html" %} |
2 | {% load i18n %} | |
3 | {% load url from future %} | |
4 | {% block title %}{% trans "Login" %} | {{ block.super }}{% endblock %} | |
5 | ||
6 | {% block main %} | |
7 | <section class="body"> | |
8 | {% if next %} | |
9 | <p class="alert alert-info">{% trans "Please login to continue." %}</p> | |
10 | {% endif %} | |
11 | ||
12 | <div class="row"> | |
13 | <div class="span6"> | |
14 | <a class="btn btn-primary" href="{% url 'authgroupex:login' %}">Connexion via X.org</a> | |
15 | </div> | |
16 | </div> | |
17 | </section> | |
18 | {% endblock %} |