mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-03-14 15:05:21 +01:00
15 lines
448 B
HTML
15 lines
448 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block header %}
|
|
<h1>{% block title %}Se connecter{% endblock %}</h1>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="post">
|
|
<label for="username">Nom d'utilisateur</label>
|
|
<input name="username" id="username" required>
|
|
<label for="password">Mot de passe</label>
|
|
<input type="password" name="password" id="password" required>
|
|
<input type="submit" value="Se connecter">
|
|
</form>
|
|
{% endblock %} |