mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-03-14 06:55:21 +01:00
15 lines
456 B
HTML
15 lines
456 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block header %}
|
||
|
<h1>{% block title %}Créer un compte{% 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="Créer un compte">
|
||
|
</form>
|
||
|
{% endblock %}
|