diff --git a/budget/forms.py b/budget/forms.py index 8947f77..3327f21 100644 --- a/budget/forms.py +++ b/budget/forms.py @@ -21,7 +21,7 @@ class ProjectForm(Form): class AuthenticationForm(Form): id = TextField("Project identifier", validators=[Required()]) - password = TextField("Password", validators=[Required()]) + password = PasswordField("Password", validators=[Required()]) submit = SubmitField("Get in")