Commit 2a1146bd48d7516c1244c0bace3826e2e0188288

Authored by Sergio Oliveira
1 parent 39a4bff8

Login template

Showing 1 changed file with 12 additions and 0 deletions   Show diff stats
colab/accounts/templates/accounts/login.html 0 → 100644
... ... @@ -0,0 +1,12 @@
  1 +{% extends 'base.html' %}
  2 +{% load browserid i18n %}
  3 +
  4 +{% block main-content %}
  5 + <br><br><br>
  6 + <div class="col-lg-12 text-center">
  7 + <p>{% trans 'To login please click in the link below:'%}</p>
  8 + {% trans 'Login' as login_text %}
  9 + {% browserid_login text=login_text link_class='btn btn-primary btn-lg' %}
  10 + </div>
  11 + <br><br><br>
  12 +{% endblock %}
... ...