From 058d7c5f9642ebff89b9e0c2e8eee64b48d70be5 Mon Sep 17 00:00:00 2001 From: Lorena Sutherland Date: Wed, 2 Dec 2015 13:57:03 +0000 Subject: [PATCH] Change password label --- app/main/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main/forms.py b/app/main/forms.py index bc013fccc..44ee24c1a 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -9,7 +9,7 @@ class LoginForm(Form): DataRequired(message='Email cannot be empty'), Email(message='Please enter a valid email address') ]) - password = PasswordField('Password', validators=[ + password = PasswordField('Create a password', validators=[ DataRequired(message='Please enter your password') ])