dev

Forked from tuleap/dev

Clone or download

Read-only

request #6964: Prevent users to enter misspelled emails during registration

During user registration, users might misspell their email address, leading to a lost email (and maybe a lost user). This changes let the plateform to suggest a right domain when the user misspell it. This is will improve user experience. Based on the javascript lib mailcheck (MIT License) Usefull links: - http://blog.kicksend.com/how-we-decreased-sign-up-confirmation-email-bounces-by-50/ - https://github.com/mailcheck/mailcheck To test it, register as a new user, enter a wrong email address like: toto@gnail.com, when you leave the input, it will suggest: toto@gmail.com. Change-Id: I0edf0821caafca15d151ca21f7cfba5797dd0f59

Modified Files

Name
M site-content/en_US/scripts/locale.txt +4 −0 Go to diff View file
M site-content/fr_FR/scripts/locale.txt +5 −1 Go to diff View file
M src/templates/account/register-form-start.mustache +3 −2 Go to diff View file
M src/www/account/register.php +2 −0 Go to diff View file
A src/www/scripts/mailcheck/LICENSE +20 −0 Go to diff View file
A src/www/scripts/mailcheck/mailcheck.min.js +1 −0 Go to diff View file
A src/www/scripts/tuleap/mailchecker.js +73 −0 Go to diff View file
M src/www/themes/common/css/utils/register.less +14 −0 Go to diff View file