I am trying to add a few pages
first I am modifying the ligin page with a link for reset password and add account. It works when I use stand alone pages, but not with the pages i added as an extension
so I added ResetPassword in dashboard/pages and resetpassword and view to amazing directory
add entries to app.js resetPaswordPage: {
resetPassword: function (event) {
event.preventDefault();
showLoader();
KoolReport.dashboard.contact("App/ResetPassword", "ResetPassword", {
email: $("#resetPasswordPage #email").val()
});
return false;
},
logout: function () {
showLoader();
KoolReport.dashboard.contact("App/Login", "logout");
}
},
but it does not work as expected.
I still need to add the password rest email , a password change landindg page ;/
I also want to create a create account page