You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
<!-- templates/registration/login.html -->
|
|
{% extends 'tournaments/base.html' %}
|
|
{% block head_title %} Connexion {% endblock %}
|
|
{% block first_title %} Padel Club {% endblock %}
|
|
{% block second_title %} Connexion {% endblock %}
|
|
|
|
{% block content %}
|
|
{% load static %}
|
|
{% load tz %}
|
|
|
|
<div class="grid-x">
|
|
<div class="bubble">
|
|
<div class="cell medium-6 large-6 my-block">
|
|
<form method="post" action="{% url 'login' %}">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="next" value="{{ request.GET.next }}">
|
|
<label for="username">Identifiant ou e-mail </label>
|
|
<input type="text" name="username" id="username" required>
|
|
|
|
<label for="password">Mot de passe :</label>
|
|
<input type="password" name="password" id="password" required>
|
|
<button type="submit" class="button">Se connecter</button>
|
|
</form>
|
|
<p>Pas encore de compte ? <a href="{% url 'signup' %}" class="styled-link">Créer le tout de suite !</a></p>
|
|
</div>
|
|
{% for message in messages %}
|
|
<div class="alert alert-{{ message.tags }}">{{ message }}</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|