diff --git a/src/postorius/templates/postorius/login.html b/src/postorius/templates/postorius/login.html index 3428601..d9c4999 100644 --- a/src/postorius/templates/postorius/login.html +++ b/src/postorius/templates/postorius/login.html @@ -2,44 +2,56 @@ {% load i18n %} {% load staticfiles %} {% load browserid %} +{% load bootstrap_tags %} {% block subtitle %} -{% trans "Login" as page_title %}{{ page_title }} +{% trans 'Login' %} {% endblock %} {% block main %} + {% browserid_info %} +
+

{% trans 'Login with username and password or with Mozilla Persona' %}

+
+
+
+
+ {% csrf_token %} + {% if form.non_field_errors %} +
{{ form.non_field_errors }}
+ {% endif %} + {% for field in form %} + {% if field.errors %} +
{{ field.errors }}
+ {% endif %} +
+ + {{ field|add_form_control }} +
+ {% endfor %} + +
+
+ +
+
+
-{% browserid_info %} -
-

{% trans "Login with username and password or with Mozilla Persona" %}

- -
- - - -
-
- - -

{% trans "Mozilla Persona is an easy way to sign into multiple websites, while still controlling your personal data. For more information see the Mozilla website" %}. -

- -
-
-
-
{% endblock %} {% block additionaljs %}