Fix typo in error message

This commit is contained in:
Janek Bevendorff 2015-10-21 16:24:46 +02:00
parent dd2f0fdc4d
commit 042a26c7bd

View file

@ -76,7 +76,7 @@ def main():
else: else:
main_content = read_template_file('fail.tpl', message='User not found or wrong password entered.') main_content = read_template_file('fail.tpl', message='User not found or wrong password entered.')
else: else:
main_content = read_template_file('fail.tpl', message='Passwords to not match.') main_content = read_template_file('fail.tpl', message='Passwords do not match.')
elif form_ok == False: elif form_ok == False:
main_content = read_template_file('fail.tpl', message='All fields are required.') main_content = read_template_file('fail.tpl', message='All fields are required.')
else: else: