Files
luos/workflow/engine/xmlform/login/login.xml

118 lines
3.5 KiB
XML
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2011-06-03 15:07:04 -04:00
<dynaForm name="login" version="1.0" basedir="" xmlform_type="NORMAL" width="400px" enabletemplate="1">
2014-04-21 10:21:01 -04:00
<TITLE type="title">
<en><![CDATA[Login]]></en>
</TITLE>
<USR_USERNAME type="text" size="30" maxlength="50" validate="Any" autocomplete="0">
2014-04-21 10:21:01 -04:00
<en><![CDATA[User]]></en>
</USR_USERNAME>
<USR_PASSWORD type="text" size="30" maxlength="32" autocomplete="0">
2014-04-21 10:21:01 -04:00
<en><![CDATA[Password]]></en>
</USR_PASSWORD>
<USR_PASSWORD_MASK type="password" size="30" maxlength="32" autocomplete="0">
<en><![CDATA[Password]]></en>
</USR_PASSWORD_MASK>
2014-04-21 10:21:01 -04:00
<USER_LANG type="dropdown" sqlconnection="dbarray">
SELECT LANG_ID, LANG_NAME FROM langOptions
2014-04-21 10:21:01 -04:00
<en><![CDATA[Language]]></en>
</USER_LANG>
2014-04-21 10:21:01 -04:00
<URL type="hidden"/>
<LOGIN_VERIFY_MSG type="private" showInTable="0"/>
<BSUBMIT type="button">
2014-04-21 10:21:01 -04:00
<en><![CDATA[Login]]></en>
</BSUBMIT>
<FORGOT_PASWORD_LINK type="link" link="forgotPassword" onclick="" colAlign="right" colWidth="135" style="display:none;">
<en><![CDATA[Forgot Password]]></en>
</FORGOT_PASWORD_LINK>
<JS type="javascript"><![CDATA[
//validate iframe login
if(inIframe() && (window.location.search.indexOf("inIFrame=1")===-1)) {
if (PM.Sessions.getCookie('PM-TabPrimary') !== '101010010'
&& (window.location.pathname.indexOf("login/login") !== -1
|| window.location.pathname.indexOf("sysLogin") !== -1)) {
window.top.location.href = window.location.pathname;
}
}
function inIframe () {
try {
return window.self !== window.top;
} catch (e) {
return true;
}
};
2011-06-03 15:07:04 -04:00
// enable/disable forgot password link
if(flagForgotPassword == 'on' || flagForgotPassword == '1') {
document.getElementById("form[FORGOT_PASWORD_LINK]").style.display = 'block';//hideRowById('FORGOT_PASWORD_LINK');
}
2010-12-02 23:34:41 +00:00
var panel;
function showGettingStarted() {
2010-12-02 23:34:41 +00:00
panel = new leimnud.module.panel();
panel.options = {
size: {w:620,h:500},
position: {x:50,y:50,center:true},
control: {close:true,resize:false},fx:{modal:true},
statusBar: false,
fx: {shadow:true,modal:true}
2010-12-02 23:34:41 +00:00
};
panel.make();
panel.loader.show();
var r = new leimnud.module.rpc.xmlhttp({
url:"../services/login_getStarted.php",
method:"POST"
});
r.callback = function(rpc) {
2010-12-02 23:34:41 +00:00
panel.loader.hide();
panel.addContent(rpc.xmlhttp.responseText);
};
r.make();
};
var saveConfig = function() {
if (document.getElementById("getStarted").checked == true) {
2010-12-02 23:34:41 +00:00
var oRPC = new leimnud.module.rpc.xmlhttp({
url: '../login/login_Ajax',
async: false,
2010-12-02 23:34:41 +00:00
method: 'POST',
args: 'function=getStarted_save'
2010-12-02 23:34:41 +00:00
});
oRPC.make();
}
panel.remove();
}
var dynaformOnload = function() {
setFocus(getField('USR_USERNAME'));
if (flagGettingStarted) {
showGettingStarted();
}
2010-12-02 23:34:41 +00:00
};
leimnud.event.add(document.getElementById('form[USR_PASSWORD_MASK]'), 'keypress', function(event) {
var key;
if(window.event)
key = window.event.keyCode; //IE
else
key = event.which; //firefox
if(key == 13) {
document.getElementById('form[BSUBMIT]').click();
return true;
} else {
return true;
}
});
leimnud.event.add(document.getElementById('form[BSUBMIT]'), 'click', function() {
document.getElementById('form[USR_PASSWORD]').value = document.getElementById('form[USR_PASSWORD_MASK]').value;
document.getElementById('form[USR_PASSWORD_MASK]').value = '';
document.getElementById('form[USR_PASSWORD_MASK]').setAttribute('type', 'text');
document.login.submit();
//return true;
}.extend(document.getElementById('form[BSUBMIT]')));
2014-04-21 10:21:01 -04:00
]]></JS>
</dynaForm>