mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-04-03 00:22:36 +00:00
18 lines
439 B
JavaScript
18 lines
439 B
JavaScript
/**
|
|
* Login page controller
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
ComunicWeb.pages.login = {
|
|
/**
|
|
* Open login page
|
|
*
|
|
* @param {Object} additionnalData Additionnal data passed in the method
|
|
* @param {element} targetElement Where the template will be applied
|
|
* @returns {Boolean} False if it fails
|
|
*/
|
|
openLoginPage: function(additionnalData, targetElement){
|
|
alert("login page to open !");
|
|
}
|
|
}; |