aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--budget/forms.py2
1 files changed, 1 insertions, 1 deletions
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")