diff --git a/app/templates/auth/account.html.j2 b/app/templates/auth/account.html.j2 index 0b5c33b7..50c3e90c 100644 --- a/app/templates/auth/account.html.j2 +++ b/app/templates/auth/account.html.j2 @@ -2,10 +2,10 @@ {% block page_content %}
-
-
- Change account information -
+

Change account information

+
+ +
{{ form.hidden_tag() }}
email @@ -40,11 +40,11 @@ {{ error }} {% endfor %}
-
- {{ form.submit(class='btn right') }} -
- -
+
+
+ {{ form.submit(class='btn') }} +
+
{% endblock %} diff --git a/app/templates/auth/login.html.j2 b/app/templates/auth/login.html.j2 index 68710ccd..0d865f03 100644 --- a/app/templates/auth/login.html.j2 +++ b/app/templates/auth/login.html.j2 @@ -9,29 +9,34 @@

Sign in into an exisiting account or register a new one!

-
-
- Register -
+
+
+ Register
-
- Log In -
+ +
+ Log In {{ form.hidden_tag() }}
person {{ form.login(class='validate') }} {{ form.login.label }} + {% for error in form.login.errors %} + {{ error }} + {% endfor %}
vpn_key {{ form.password(class='validate') }} {{ form.password.label }} + {% for error in form.password.errors %} + {{ error }} + {% endfor %}
Forgot Password? -
- {{ form.submit(class='btn right') }} -
- -
+
+
+ {{ form.submit(class='btn right') }} +
+
{% endblock %} diff --git a/app/templates/auth/register.html.j2 b/app/templates/auth/register.html.j2 index 52070a1a..ab72f1db 100644 --- a/app/templates/auth/register.html.j2 +++ b/app/templates/auth/register.html.j2 @@ -2,10 +2,10 @@ {% block page_content %}
-
-
- Register -
+
+ +
+ Register {{ form.hidden_tag() }}
account_circle @@ -39,11 +39,11 @@ {{ error }} {% endfor %}
-
- {{ form.submit(class='btn right') }} -
- -
+
+
+ {{ form.submit(class='btn') }} +
+
{% endblock %} diff --git a/app/templates/auth/reset_password.html.j2 b/app/templates/auth/reset_password.html.j2 index e545e464..d73b533e 100644 --- a/app/templates/auth/reset_password.html.j2 +++ b/app/templates/auth/reset_password.html.j2 @@ -2,18 +2,18 @@ {% block page_content %}
-
-
- Reset Your Password -
+
+ +
+ Reset Your Password {{ form.hidden_tag() }} - {% if form.email is defined %}
{{ form.email(class='validate', type='email') }} {{ form.email.label }} + {% for error in form.email.errors %} + {{ error }} + {% endfor %}
- {% endif %} - {% if form.password is defined %}
{{ form.password(class='validate', type='password') }} {{ form.password.label }} @@ -21,18 +21,18 @@ {{ error }} {% endfor %}
- {% endif %} - {% if form.password2 is defined %}
{{ form.password2(class='validate', type='password') }} {{ form.password2.label }} + {% for error in form.password2.errors %} + {{ error }} + {% endfor %}
- {% endif %} -
- {{ form.submit(class='btn right') }} -
- -
+
+
+ {{ form.submit(class='btn right') }} +
+
{% endblock %}