diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-06-16 08:05:54 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-06-16 08:05:54 +0200 |
commit | 65358299637677749dac16f188c668d3ddd780f0 (patch) | |
tree | 8d2e4d1ff1b9c729fee6f1240297dd0da0011877 /pyaggr3g470r | |
parent | Enables the user to recover its account when he has forgotten its password. (diff) | |
download | newspipe-65358299637677749dac16f188c668d3ddd780f0.tar.gz newspipe-65358299637677749dac16f188c668d3ddd780f0.tar.bz2 newspipe-65358299637677749dac16f188c668d3ddd780f0.zip |
Renamed submit button.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r-- | pyaggr3g470r/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/forms.py b/pyaggr3g470r/forms.py index e35d8b2a..fdd1f24d 100644 --- a/pyaggr3g470r/forms.py +++ b/pyaggr3g470r/forms.py @@ -119,7 +119,7 @@ class InformationMessageForm(Form): class RecoverPasswordForm(Form): email = EmailField("Email", [validators.Length(min=6, max=35), validators.Required(lazy_gettext("Please enter your email address."))]) - submit = SubmitField(lazy_gettext("Save")) + submit = SubmitField(lazy_gettext("Recover")) def __init__(self, *args, **kwargs): Form.__init__(self, *args, **kwargs) |