New login.html

This commit is contained in:
augustin64 2023-06-11 22:01:03 +02:00
parent 7fb6648fa1
commit 4e6421f9dc
2 changed files with 3 additions and 4 deletions

View File

@ -420,6 +420,7 @@ dialog:target ~ .mask {
/** Forms */ /** Forms */
input[type="text"], input[type="text"],
input[type="search"], input[type="search"],
input[type="password"],
select, select,
textarea { textarea {
padding: 7px; padding: 7px;

View File

@ -6,10 +6,8 @@
{% block content %} {% block content %}
<form method="post"> <form method="post">
<label for="username">Nom d'utilisateur</label> <input type="text" name="username" id="username" placeholder="Nom d'utilisateur" required><br/>
<input name="username" id="username" required> <input type="password" name="password" id="password" placeholder="Mot de passe" required><br/>
<label for="password">Mot de passe</label>
<input type="password" name="password" id="password" required>
<input type="submit" value="Se connecter"> <input type="submit" value="Se connecter">
</form> </form>
{% endblock %} {% endblock %}