diff options
| author | Frédéric Sureau <fred@milka.(none)> | 2011-08-05 16:44:31 +0200 |
|---|---|---|
| committer | Frédéric Sureau <fred@milka.(none)> | 2011-08-05 16:44:31 +0200 |
| commit | e6def5587a47b47212f21800a0b1800119103b7c (patch) | |
| tree | 08bd5591a617859cc58b51958d21bae07ae78e9c /budget | |
| parent | 410c4596dfd5791435bfb8fd73a5fb5a48dd8b47 (diff) | |
| download | ihatemoney-mirror-e6def5587a47b47212f21800a0b1800119103b7c.zip ihatemoney-mirror-e6def5587a47b47212f21800a0b1800119103b7c.tar.gz ihatemoney-mirror-e6def5587a47b47212f21800a0b1800119103b7c.tar.bz2 | |
Changed password field type in authentication form.
Diffstat (limited to 'budget')
| -rw-r--r-- | budget/forms.py | 2 |
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") |
