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.
30 lines
1.0 KiB
30 lines
1.0 KiB
<!-- templates/registration/login.html -->
|
|
{% extends 'tournaments/base.html' %}
|
|
{% block head_title %} {% endblock %}
|
|
{% block first_title %}{% endblock %}
|
|
{% block second_title %}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% load static %}
|
|
{% load tz %}
|
|
|
|
<div class="grid-x">
|
|
<div class="cell medium-6 large-6 my-block">
|
|
<form method="post" action="{% url 'login' %}">
|
|
{% csrf_token %}
|
|
<label for="username">Username:</label>
|
|
<input type="text" name="username" id="username" value="{{ pre_login_username }}" required>
|
|
|
|
<label for="password">Password:</label>
|
|
<input type="password" name="password" id="password" value="{{ pre_login_password }}" required>
|
|
<button type="submit" class="button">Se connecter</button>
|
|
</form>
|
|
<p>Pas encore de compte ? <a href="{% url 'signup' %}"">Créer le tout de suite !</a>.</p>
|
|
</div>
|
|
</div>
|
|
|
|
{% for message in messages %}
|
|
<div class="alert alert-{{ message.tags }}">{{ message }}</div>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|