mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-03-14 06:55:21 +01:00
12 lines
437 B
HTML
12 lines
437 B
HTML
{% extends 'base.html' %}
|
|
|
|
|
|
{% block content %}
|
|
<h2>{% block title %}{{ _("Connexion") }}{% endblock %}</h2>
|
|
|
|
<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 %} |