Login as #90

Manually merged
Lephenixnoir merged 3 commits from login_as into dev 2021-03-10 16:15:04 +01:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit d783feb7d0 - Show all commits

View File

@ -5,13 +5,13 @@ from wtforms.validators import InputRequired
class LoginForm(FlaskForm):
username = StringField(
'Identifiant',
'Identifiant',
validators=[
InputRequired(),
],
)
password = PasswordField(
'Mot de passe',
'Mot de passe',
validators=[
InputRequired(),
],