mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-11-04 12:14:12 +00:00 
			
		
		
		
	Handles too many account creation request error.
This commit is contained in:
		@@ -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
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user