diff --git a/re2o/templates/re2o/portail_login.html b/re2o/templates/re2o/portail_login.html index 579b66bc..80f12c96 100644 --- a/re2o/templates/re2o/portail_login.html +++ b/re2o/templates/re2o/portail_login.html @@ -28,12 +28,19 @@ with this program; if not, write to the Free Software Foundation, Inc., {% block title %}Machine non reconnue{% endblock %} {% block content %} + + +
+

Création d'une machine fillaire

+

Pour créer une machine fillaire, connectez vous puis débranchez et rebranchez votre cable Ethernet

+
+ {% bootstrap_form_errors loginform %}
{% csrf_token %} {% bootstrap_form loginform %} - {% bootstrap_button action_name button_type="submit" icon="star" %} +
diff --git a/re2o/views.py b/re2o/views.py index 9af5886e..7d76baba 100644 --- a/re2o/views.py +++ b/re2o/views.py @@ -102,7 +102,7 @@ def mac_from_ip(ip): def portail_login(request): """ Check for authentication. If success, register the current machine for the user.""" - login_form = AuthenticationForm(data=request.POST) + login_form = AuthenticationForm(data=request.POST or None) success = False if login_form.is_valid(): remote_ip = get_ip(request)