diff options
Diffstat (limited to 'tbc')
-rwxr-xr-x | tbc/views.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tbc/views.py b/tbc/views.py index 12be768..fd8fed3 100755 --- a/tbc/views.py +++ b/tbc/views.py @@ -205,13 +205,13 @@ def ForgotPassword(request): user.set_password(password) user.save() subject = "PythonTBC: Password Reset" - message = "Dear "+user.first_name+",\n"+ - "Your password for PythonTBC interface has been reset."+ - "Your credentials are:\n"+ - "Username: "+user.username+ - "\nPassword: "+password+ - "\n\nKindly login with the given password and update your password through the below given link."+ - "\nLink: http://tbc-python.fossee.in/update-password."+ + message = "Dear "+user.first_name+",\n"+\ + "Your password for PythonTBC interface has been reset."+\ + "Your credentials are:\n"+\ + "Username: "+user.username+\ + "\nPassword: "+password+\ + "\n\nKindly login with the given password and update your password through the below given link."+\ + "\nLink: http://tbc-python.fossee.in/update-password."+\ "\n\nThank You !" email_send(email, subject, message) form = UserLoginForm() |