Handles too many account creation request error.

This commit is contained in:
Pierre HUBERT 2018-08-20 14:51:02 +02:00
parent e77b509202
commit 44fa0bea24
3 changed files with 4 additions and 0 deletions

View File

@ -211,6 +211,7 @@ ComunicWeb.common.langs.en = {
form_create_account_err_passwd_differents: "The two passwords are not the same !", form_create_account_err_passwd_differents: "The two passwords are not the same !",
form_create_account_err_create_account_message: "An error occured while trying to create your account. It is most likely to be a server error, but please check your input...", form_create_account_err_create_account_message: "An error occured while trying to create your account. It is most likely to be a server error, but please check your input...",
form_create_account_err_existing_email: "This email address is already associated with an account!", form_create_account_err_existing_email: "This email address is already associated with an account!",
form_create_account_err_too_many_requests: "Too many account created for now. Please try again later...",
form_create_account_err_create_account_title: "Account creation failed", form_create_account_err_create_account_title: "Account creation failed",
//Account created page //Account created page

View File

@ -210,6 +210,7 @@ ComunicWeb.common.langs.fr = {
form_create_account_err_passwd_differents: "Les deux mots de passe ne sont pas identiques !", form_create_account_err_passwd_differents: "Les deux mots de passe ne sont pas identiques !",
form_create_account_err_create_account_message: "Une erreur a survenue lors de la tentative de création de compte. Veuillez vérifier votre saisie...", form_create_account_err_create_account_message: "Une erreur a survenue lors de la tentative de création de compte. Veuillez vérifier votre saisie...",
form_create_account_err_existing_email: "L'adresse mail spécifiée est déjà associée à un compte...", form_create_account_err_existing_email: "L'adresse mail spécifiée est déjà associée à un compte...",
form_create_account_err_too_many_requests: "Trop de comptes créés pour le moment, veuillez réessayer plus tard...",
form_create_account_err_create_account_title: "La création de compte a échouée", form_create_account_err_create_account_title: "La création de compte a échouée",
//Account created page //Account created page

View File

@ -181,6 +181,8 @@ ComunicWeb.pages.createAccount = {
//Determine the right error to choose //Determine the right error to choose
if(response.error.code == 409) if(response.error.code == 409)
var message = "form_create_account_err_existing_email"; var message = "form_create_account_err_existing_email";
else if(response.error.code = 429)
var message = "form_create_account_err_too_many_requests";
else else
var message = "form_create_account_err_create_account_message"; var message = "form_create_account_err_create_account_message";