X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=Pman.Login.js;h=234b9c099d3eef4ef42aea03dc812eec73172906;hp=e983845542d7be8ed3d3dce1700e80ac35340bcd;hb=c1af5e6bb6064e88469651271f4d9aaff34d69c0;hpb=a4f352513e0060efcd8692afb0c09f6f10e5e644 diff --git a/Pman.Login.js b/Pman.Login.js index e9838455..234b9c09 100644 --- a/Pman.Login.js +++ b/Pman.Login.js @@ -69,7 +69,7 @@ Pman.Login = new Roo.util.Observable({ if (!res.data.id) { // id=0 == login failure. return this.show(true); } - Roo.log(res); + //console.log(success); this.fillAuth(res.data); @@ -259,15 +259,15 @@ Pman.Login = new Roo.util.Observable({ Roo.MessageBox.alert("Error", "Fill in your email address"); return; } - Roo.Ajax.request({ - url: baseURL + '/Login.js', + new Pman.Request({ + url: baseURL + '/Login.js', + mask : "Sending Password Reset email", params: { passwordRequest: n }, method: 'POST', - success: function(response, opts) { // check successfull... + success: function(res) { // check successfull... - var res = Pman.processResponse(response); if (!res.success) { // error! Roo.MessageBox.alert("Error" , res.errorMsg ? res.errorMsg : "Problem Requesting Password Reset"); return; @@ -407,18 +407,22 @@ Pman.Login = new Roo.util.Observable({ ef.dom.style.margin = 10; this.form.render(ef.dom); - // logoprefix comes from base config. + // logoprefix comes from base config - normally the owner company logo... + // ??? var img = typeof(appLogo) != 'undefined' && appLogo.length ? appLogo : rootURL + '/Pman/'+appNameShort + '/templates/images/logo.gif' ; - Pman.Login.form.el.createChild({ + Pman.Login.form.el.createChild({ tag: 'img', src: img, style: 'margin-bottom: 10px;' }, Pman.Login.form.el.dom.firstChild - ); + ).on('error', function() { + this.dom.style.visibility = 'hidden'; + this.dom.style.height = '10px'; + }); var vp = this.dialog.getLayout().add('center', new Roo.ContentPanel(ef, { autoCreate : true,