mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-26 05:49:22 +00:00
Improve password check
This commit is contained in:
parent
28fb38bf0c
commit
0f597f8212
@ -76,15 +76,15 @@ ComunicWeb.pages.resetPassword.main = {
|
|||||||
//Check for errors
|
//Check for errors
|
||||||
if(result.error){
|
if(result.error){
|
||||||
messagesTarget.appendChild(ComunicWeb.common.messages.createCalloutElem(
|
messagesTarget.appendChild(ComunicWeb.common.messages.createCalloutElem(
|
||||||
"Error",
|
tr("Error"),
|
||||||
"Your reset password request timed out, or is invalid. Please try again to reset your password...",
|
tr("Your reset password request timed out, or is invalid. Please try again to reset your password..."),
|
||||||
"danger"
|
"danger"
|
||||||
));
|
));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
//Display reset password form
|
//Display reset password form
|
||||||
ComunicWeb.pages.resetPassword.main.displayResetPasswordForm(boxBody, messagesTarget, token);
|
ComunicWeb.pages.resetPassword.main.displayResetPasswordForm(boxBody, messagesTarget, token, result);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -94,8 +94,9 @@ ComunicWeb.pages.resetPassword.main = {
|
|||||||
* @param {HTMLElement} target The target for the form
|
* @param {HTMLElement} target The target for the form
|
||||||
* @param {HTMLElement} messagesTarget The target for the messages
|
* @param {HTMLElement} messagesTarget The target for the messages
|
||||||
* @param {String} token The reset token of the user
|
* @param {String} token The reset token of the user
|
||||||
|
* @param {String} info Information about the token
|
||||||
*/
|
*/
|
||||||
displayResetPasswordForm: function(target, messagesTarget, token){
|
displayResetPasswordForm: function(target, messagesTarget, token, info){
|
||||||
|
|
||||||
//Create form container
|
//Create form container
|
||||||
var formTarget = createElem2({
|
var formTarget = createElem2({
|
||||||
@ -111,7 +112,10 @@ ComunicWeb.pages.resetPassword.main = {
|
|||||||
formTarget,
|
formTarget,
|
||||||
tr("Your new password"),
|
tr("Your new password"),
|
||||||
tr("Your new password")
|
tr("Your new password")
|
||||||
)
|
);
|
||||||
|
passwordInput.setFirstName(info.first_name)
|
||||||
|
passwordInput.setLastName(info.last_name)
|
||||||
|
passwordInput.setEmail(info.mail)
|
||||||
|
|
||||||
//Ask password confirmation
|
//Ask password confirmation
|
||||||
var confirmPasswordInput = createFormGroup({
|
var confirmPasswordInput = createFormGroup({
|
||||||
|
Loading…
Reference in New Issue
Block a user