mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
2012-04-12 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* include/styles/dialog.css include/styles/pandora.css include/auth/mysql.php general/login_page.php: Modal windows improved and changes in login page error. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5949 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
732d6bc8ae
commit
15acc345b5
@ -1,3 +1,11 @@
|
|||||||
|
2012-04-12 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
|
* include/styles/dialog.css
|
||||||
|
include/styles/pandora.css
|
||||||
|
include/auth/mysql.php
|
||||||
|
general/login_page.php: Modal windows improved and changes in login
|
||||||
|
page error.
|
||||||
|
|
||||||
2012-04-12 Sergio Martin <sergio.martin@artica.es>
|
2012-04-12 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
* godmode/reporting/visual_console_builder.editor.php
|
* godmode/reporting/visual_console_builder.editor.php
|
||||||
|
@ -82,16 +82,22 @@ echo '<div id="ver_num">' . $pandora_version.(($develop_bypass == 1) ? ' '.__('B
|
|||||||
|
|
||||||
|
|
||||||
if (isset ($login_failed)) {
|
if (isset ($login_failed)) {
|
||||||
|
|
||||||
echo '<div id="login_failed" title="Login Failed" style="">';
|
|
||||||
|
|
||||||
echo '<div style="position:absolute; top:20%; text-align: center; left:0%; right:0%; width:600px;">';
|
echo '<div id="login_failed" title="Login failed" style="">';
|
||||||
|
|
||||||
|
echo '<div style="position:absolute; top:0px; text-align: center; left:0%; right:0%; height:100px; width:330px; margin: 0 auto; ">';
|
||||||
|
|
||||||
echo '<div id="error_login">';
|
echo '<div id="error_login">';
|
||||||
echo '<h3 class="error">'.__('Login failed').': '.$config["auth_error"].'</h3>';
|
echo '<b>' . $config["auth_error"] . '</b>';
|
||||||
|
echo '</div>';
|
||||||
|
|
||||||
|
echo '<div id="error_login_icon">';
|
||||||
|
echo html_print_image('images/noaccess.png', true, array("alt" => __('Login failed'), "border" => 0));
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
|
||||||
echo '<div style="position: absolute; top:60px; right:40%;">';
|
|
||||||
|
//echo '<div style="position: absolute; top:60px; right:40%;">';
|
||||||
|
echo '<div style="position:absolute; margin: 0 auto; top: 70px; left: 35%; ">';
|
||||||
html_print_submit_button("Ok", 'hide-login-error', false, 'class="ui-button-dialog ui-widget ui-state-default ui-corner-all ui-button-text-only" style="width:100px;"');
|
html_print_submit_button("Ok", 'hide-login-error', false, 'class="ui-button-dialog ui-widget ui-state-default ui-corner-all ui-button-text-only" style="width:100px;"');
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
|
||||||
@ -113,7 +119,7 @@ if (!isset ($login_failed)) {
|
|||||||
<!--[if IE]>
|
<!--[if IE]>
|
||||||
<div id="dialog" title="Pandora FMS Web browser advise" style="-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)'; filter: alpha(opacity=50); background:url(images/advise_navigator_background.png) no-repeat center bottom">
|
<div id="dialog" title="Pandora FMS Web browser advise" style="-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)'; filter: alpha(opacity=50); background:url(images/advise_navigator_background.png) no-repeat center bottom">
|
||||||
|
|
||||||
<div style="position:absolute; top:20%; text-align: center; left:0%; right:0%; width:600px;">
|
<div style="position:absolute; top:20%; text-align: center; left:0%; right:0%; width:590px;">
|
||||||
<img src="images/error.png">
|
<img src="images/error.png">
|
||||||
<?php
|
<?php
|
||||||
echo __("In order to have the best user experience with Pandora FMS, we <b>strongly recommend</b> to use") . "<br>";
|
echo __("In order to have the best user experience with Pandora FMS, we <b>strongly recommend</b> to use") . "<br>";
|
||||||
@ -165,8 +171,8 @@ $(document).ready (function () {
|
|||||||
resizable: true,
|
resizable: true,
|
||||||
draggable: true,
|
draggable: true,
|
||||||
modal: true,
|
modal: true,
|
||||||
height: 180,
|
height: 150,
|
||||||
width: 600,
|
width: 350,
|
||||||
overlay: {
|
overlay: {
|
||||||
opacity: 0.5,
|
opacity: 0.5,
|
||||||
background: "black"
|
background: "black"
|
||||||
|
@ -103,6 +103,7 @@ function process_user_login ($login, $pass) {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$mysql_cache["auth_error"] = "User not found in database or incorrect password";
|
$mysql_cache["auth_error"] = "User not found in database or incorrect password";
|
||||||
|
$config["auth_error"] = "User not found in database or incorrect password";
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
/* This file skins dialog */
|
/* This file skins dialog */
|
||||||
|
|
||||||
.ui-dialog {
|
.ui-dialog {
|
||||||
background: #EEEEEE !important;
|
background: #D3D3D3 !important;
|
||||||
border: 1px solid #DDDDDD !important;
|
border: 1px solid #DDDDDD !important;
|
||||||
color: #333333 !important;
|
color: #333333 !important;
|
||||||
padding: 0.2em !important;
|
padding: 0.2em !important;
|
||||||
@ -19,17 +19,22 @@
|
|||||||
|
|
||||||
.ui-dialog .ui-dialog-titlebar {
|
.ui-dialog .ui-dialog-titlebar {
|
||||||
background: url(../../images/ui_title.png) repeat-x scroll !important;
|
background: url(../../images/ui_title.png) repeat-x scroll !important;
|
||||||
height: 28px !important;
|
#height: 15px !important;
|
||||||
_height: 29px !important;
|
#_height: 16px !important;
|
||||||
margin: 2px auto 0 auto !important;
|
padding: 0.3em 1em !important;
|
||||||
|
position:relative;
|
||||||
|
margin: 0px auto 0 auto !important;
|
||||||
font-weight: bold !important;
|
font-weight: bold !important;
|
||||||
border: 1px solid #3d6630 !important;
|
border-bottom: 1px solid #A9A9A9 !important;
|
||||||
|
border-top: 1px solid #A9A9A9 !important;
|
||||||
|
border-left: 1px solid #A9A9A9 !important;
|
||||||
|
border-right: 1px solid #A9A9A9 !important;
|
||||||
color: #FFFFFF !important;
|
color: #FFFFFF !important;
|
||||||
padding: 0.1em 1em !important;
|
#padding: 0.1em 1em !important;
|
||||||
|
|
||||||
-moz-border-radius: 4px;
|
-moz-border-radius: 4px 4px 0 0;
|
||||||
-webkit-border-radius: 4px;
|
-webkit-border-radius: 4px 4px 0 0;
|
||||||
border-radius: 4px;
|
border-radius: 4px 4px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-dialog .ui-dialog-title {
|
.ui-dialog .ui-dialog-title {
|
||||||
@ -37,8 +42,9 @@
|
|||||||
color: white !important;
|
color: white !important;
|
||||||
font-weight: bold !important;
|
font-weight: bold !important;
|
||||||
position: relative !important;
|
position: relative !important;
|
||||||
top: 7px !important;
|
#top: 7px !important;
|
||||||
left: 4px !important;
|
left: 4px !important;
|
||||||
|
float: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-dialog.ui-draggable .ui-dialog-titlebar {
|
.ui-dialog.ui-draggable .ui-dialog-titlebar {
|
||||||
@ -50,7 +56,7 @@
|
|||||||
height: 16px !important;
|
height: 16px !important;
|
||||||
background: url(images/dialog-titlebar-close.png) no-repeat !important;
|
background: url(images/dialog-titlebar-close.png) no-repeat !important;
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
top: 6px;
|
top: 2px;
|
||||||
right: 17px !important;
|
right: 17px !important;
|
||||||
cursor: default !important;
|
cursor: default !important;
|
||||||
}
|
}
|
||||||
@ -66,15 +72,43 @@
|
|||||||
.ui-dialog .ui-dialog-titlebar-close-hover {
|
.ui-dialog .ui-dialog-titlebar-close-hover {
|
||||||
color: #000000 !important;
|
color: #000000 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.ui-dialog .ui-dialog-titlebar-close:hover span {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ui-dialog .ui-dialog-titlebar-close:hover {
|
||||||
|
background: url(images/dialog-titlebar-close-hover.png) no-repeat !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ui-dialog .ui-dialog-titlebar-close:hover {
|
||||||
|
color: #000000 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.ui-dialog .ui-dialog-content {
|
.ui-dialog .ui-dialog-content {
|
||||||
margin: 1.2em !important;
|
margin: 1.2em !important;
|
||||||
padding: 0.5em 1em !important;
|
#padding: 0.5em 1em !important;
|
||||||
overflow: auto !important;
|
overflow: auto !important;
|
||||||
|
|
||||||
|
border-left: 1px solid #A9A9A9 !important;
|
||||||
|
border-right: 1px solid #A9A9A9 !important;
|
||||||
|
border-bottom: 1px solid #A9A9A9 !important;
|
||||||
|
border-radius: 0px 0px 4px 4px !important;
|
||||||
|
#height: 80% !important;
|
||||||
|
#width: 98% !important;
|
||||||
|
margin: 0 auto !important;
|
||||||
|
background: #EEEEEE !important;
|
||||||
|
position: relative !important;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-dialog-content {
|
.ui-dialog-content {
|
||||||
overflow: auto !important;
|
overflow: auto !important;
|
||||||
|
width: auto !important;
|
||||||
|
#height: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-dialog .ui-dialog-buttonpane {
|
.ui-dialog .ui-dialog-buttonpane {
|
||||||
@ -180,12 +214,12 @@
|
|||||||
.ui-dialog .ui-button-dialog {
|
.ui-dialog .ui-button-dialog {
|
||||||
background: #F6F6F6;
|
background: #F6F6F6;
|
||||||
border: 1px solid #CCCCCC;
|
border: 1px solid #CCCCCC;
|
||||||
color: #1C94C4;
|
color: #696969;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
outline: medium none;
|
outline: medium none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin: 0.5em 0.4em 0.5em 0;
|
margin: 0.5em 0.4em 0.5em 0 !important;
|
||||||
border-radius: 4px 4px 4px 4px;
|
border-radius: 4px 4px 4px 4px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-dialog .ui-button-dialog:hover {
|
.ui-dialog .ui-button-dialog:hover {
|
||||||
@ -196,3 +230,6 @@
|
|||||||
outline: medium none;
|
outline: medium none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ui-dialog-overlay {
|
||||||
|
background: url("images/ui-bg_diagonals-thick_20_666666_40x40.png") repeat scroll 50% 50% #666666 !important;
|
||||||
|
}
|
||||||
|
@ -169,11 +169,25 @@ div#login_in, #login_f {
|
|||||||
width: 400px;
|
width: 400px;
|
||||||
}
|
}
|
||||||
div#error_login {
|
div#error_login {
|
||||||
margin: 0 auto;
|
#margin: 0 auto;
|
||||||
margin-top: -10px;
|
#margin-top: -10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-left: 20px;
|
margin-top: 30px;
|
||||||
|
margin-left: 5px;
|
||||||
|
width: 73%;
|
||||||
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div#error_login_icon {
|
||||||
|
#margin: 0 auto;
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-right: 7px;
|
||||||
|
text-align: center;
|
||||||
|
#margin-left: 20px;
|
||||||
|
width: 20%;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
div#login_f {
|
div#login_f {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
margin-bottom: 25px;
|
margin-bottom: 25px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user