23 lines
478 B
HTML
23 lines
478 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<form method="post" action="/login">
|
|
<input type="text" id="login" name="login">
|
|
<label for="login">Login</label>
|
|
<input type="text" name="password"">
|
|
<label for="password">Nom</label>
|
|
<button type="submit">Password</button>
|
|
</form>
|
|
{%endblock content %}
|
|
|
|
|
|
{% block css %}
|
|
.invalid {
|
|
background-color: ivory;
|
|
border: none;
|
|
outline: 2px solid red;
|
|
border-radius: 5px;
|
|
}
|
|
{% endblock css %}
|
|
|