Browse Source

portail login prettier

crans_utils
Charlie Jacomme 7 years ago
committed by Gabriel Detraz
parent
commit
7add2507c4
  1. 9
      re2o/templates/re2o/portail_login.html
  2. 2
      re2o/views.py

9
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 %}
<div class="alert alert-success">
<h4 class="alert-heading">Création d'une machine fillaire</h4>
<p>Pour créer une machine fillaire, connectez vous puis débranchez et rebranchez votre cable Ethernet</p>
</div>
{% bootstrap_form_errors loginform %}
<form class="form" method="post">
{% csrf_token %}
{% bootstrap_form loginform %}
{% bootstrap_button action_name button_type="submit" icon="star" %}
<button type="submit" class="btn btn-success">Login</button>
</form>

2
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)

Loading…
Cancel
Save