diff --git a/users/forms.py b/users/forms.py index 1f0fa54..dfb1720 100644 --- a/users/forms.py +++ b/users/forms.py @@ -195,7 +195,7 @@ class PassResetRequest(forms.Form): validate_email( email ) return email except ValidationError: - self._errors['email'] = [_('You must insert an email address')] + self._errors['email'] = [_('You must insert a valid email address')] return ValueError diff --git a/users/templates/users/profile.html b/users/templates/users/profile.html index 21c4521..0d46332 100644 --- a/users/templates/users/profile.html +++ b/users/templates/users/profile.html @@ -59,7 +59,9 @@