Get rid of inline javascript in login form.
This commit is contained in:
@@ -1726,5 +1726,12 @@ $(document).ready(function(){
|
|||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
$('#sqlquery').focus();
|
$('#sqlquery').focus();
|
||||||
|
if ($('#input_username')) {
|
||||||
|
if ($('#input_username').val() == '') {
|
||||||
|
$('#input_username').focus();
|
||||||
|
} else {
|
||||||
|
$('#input_password').focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@@ -172,14 +172,14 @@ function PMA_auth()
|
|||||||
?>
|
?>
|
||||||
<script src="./js/jquery/jquery-1.4.2.js" type="text/javascript"></script>
|
<script src="./js/jquery/jquery-1.4.2.js" type="text/javascript"></script>
|
||||||
<script src="./js/update-location.js" type="text/javascript"></script>
|
<script src="./js/update-location.js" type="text/javascript"></script>
|
||||||
<script type="text/javascript">
|
<?php
|
||||||
//<![CDATA[
|
if ( false === $GLOBALS['cfg']['AllowThirdPartyFraming']) {
|
||||||
// show login form in top frame
|
?>
|
||||||
if (top != self) {
|
<script src="./js/cross_framing_protection.js" type="text/javascript"></script>
|
||||||
window.top.location.href=location;
|
<?php
|
||||||
}
|
}
|
||||||
//]]>
|
?>
|
||||||
</script>
|
<script src="./js/functions.js" type="text/javascript"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="loginform">
|
<body class="loginform">
|
||||||
@@ -312,22 +312,6 @@ if (top != self) {
|
|||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript">
|
|
||||||
// <![CDATA[
|
|
||||||
function PMA_focusInput()
|
|
||||||
{
|
|
||||||
var input_username = document.getElementById('input_username');
|
|
||||||
var input_password = document.getElementById('input_password');
|
|
||||||
if (input_username.value == '') {
|
|
||||||
input_username.focus();
|
|
||||||
} else {
|
|
||||||
input_password.focus();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
window.setTimeout('PMA_focusInput()', 500);
|
|
||||||
// ]]>
|
|
||||||
</script>
|
|
||||||
<?php
|
<?php
|
||||||
if (file_exists(CUSTOM_FOOTER_FILE)) {
|
if (file_exists(CUSTOM_FOOTER_FILE)) {
|
||||||
require CUSTOM_FOOTER_FILE;
|
require CUSTOM_FOOTER_FILE;
|
||||||
|
Reference in New Issue
Block a user