2018-05-21 08:05:32 +00:00
|
|
|
/**
|
|
|
|
* Password forgotten page main script file
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
|
|
|
ComunicWeb.pages.passwordForgotten.main = {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open page
|
|
|
|
*
|
|
|
|
* @param {Object} args Additionnal data passed in the method
|
|
|
|
* @param {element} target Where the page will be applied
|
|
|
|
*/
|
|
|
|
open: function(args, target){
|
|
|
|
|
|
|
|
//Create the main form box
|
|
|
|
var box = createElem2({
|
|
|
|
appendTo: target,
|
|
|
|
type: "div",
|
|
|
|
class: "box box-primary box-password-forgotten"
|
|
|
|
});
|
|
|
|
|
|
|
|
//Box head
|
|
|
|
var boxHead = createElem2({
|
|
|
|
appendTo: box,
|
|
|
|
type: "div",
|
|
|
|
class: "box-header"
|
|
|
|
});
|
|
|
|
|
|
|
|
//Add box title
|
|
|
|
createElem2({
|
|
|
|
appendTo: boxHead,
|
|
|
|
type: "h3",
|
|
|
|
class: "box-title",
|
|
|
|
innerHTML: "Password forgotten"
|
|
|
|
});
|
|
|
|
|
|
|
|
//Put elements at the right of the head of the box
|
|
|
|
var rightElems = createElem2({
|
|
|
|
appendTo: boxHead,
|
|
|
|
type: "div",
|
|
|
|
class: "pull-right",
|
|
|
|
});
|
|
|
|
|
|
|
|
//Add cancel button
|
|
|
|
var cancelButton = createElem2({
|
|
|
|
appendTo: rightElems,
|
|
|
|
type: "div",
|
|
|
|
class: "btn btn-danger btn-xs btn-flat",
|
|
|
|
innerHTML: "Cancel"
|
|
|
|
});
|
|
|
|
cancelButton.addEventListener("click", function(ev){
|
|
|
|
openPage("home");
|
|
|
|
});
|
|
|
|
|
|
|
|
//Add box body
|
|
|
|
var boxBody = createElem2({
|
|
|
|
appendTo: box,
|
|
|
|
type: "div",
|
|
|
|
class: "box-body"
|
|
|
|
});
|
2018-05-21 08:40:44 +00:00
|
|
|
|
|
|
|
//Perform first step: ask user his email
|
|
|
|
ComunicWeb.pages.passwordForgotten.promptEmail.open(boxBody, function(email){
|
2018-05-22 20:48:48 +00:00
|
|
|
|
|
|
|
//Empty body
|
|
|
|
emptyElem(boxBody);
|
|
|
|
|
|
|
|
//Prompt user reset option
|
|
|
|
ComunicWeb.pages.passwordForgotten.promptOption.open(email, boxBody, function(option){
|
|
|
|
|
|
|
|
alert(option);
|
|
|
|
|
|
|
|
});
|
2018-05-21 08:40:44 +00:00
|
|
|
});
|
2018-05-21 08:05:32 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
}
|