From 3ab21967201d5ed092bf1c2d3dea084aa30cabcb Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 12 May 2014 21:49:54 +0200 Subject: Simplification of the login forms. --- pyaggr3g470r/templates/profile.html | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'pyaggr3g470r/templates/profile.html') diff --git a/pyaggr3g470r/templates/profile.html b/pyaggr3g470r/templates/profile.html index 0bad12ee..b7467329 100644 --- a/pyaggr3g470r/templates/profile.html +++ b/pyaggr3g470r/templates/profile.html @@ -5,11 +5,8 @@
{{ form.hidden_tag() }} - {{ form.firstname.label }} - {{ form.firstname(class_="form-control") }} {% for error in form.firstname.errors %} {{ error }}
{% endfor %} - - {{ form.lastname.label }} - {{ form.lastname(class_="form-control") }} {% for error in form.lastname.errors %} {{ error }}
{% endfor %} + {{ form.nickname.label }} + {{ form.nickname(class_="form-control") }} {% for error in form.nickname.errors %} {{ error }}
{% endfor %} {{ form.email.label }} {{ form.email(class_="form-control") }} {% for error in form.email.errors %} {{ error }}
{% endfor %} -- cgit