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