2007-07-01 Raul Mateos <raulofpandora@gmail.com>
* images/*.gif: Deteled last .gif images * images/pandora_lupa.png, noaccess.png: New files. * general/logon_failed.php, noaccess.php: changed gif to png * include/functions.php: changed gif to png * godmode/user_list.php: Solved small visual error with tip * godmode/modules/manage_network_templates.php: Reduced table width when no modules are defined. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@551 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
9a1e248383
commit
788bdcd4e0
|
@ -22,7 +22,7 @@
|
|||
<div id='login_f' class='databox'>
|
||||
<h1 id="log_f" style='margin-top: 0px;' class="error"><?php echo $lang_label['err_auth']; ?></h1>
|
||||
<div id='noa' style='width:50px' >
|
||||
<img src='images/noaccess.gif'>
|
||||
<img src='images/noaccess.png' alt='No access'>
|
||||
</div>
|
||||
|
||||
<div style='width: 350px'>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<div align='center'>
|
||||
<h2><?php echo $lang_label["no_access_title"] ?></h2>
|
||||
<div> </div>
|
||||
<img src='images/noaccess.gif'>
|
||||
<img src='images/noaccess.png' alt='No access'>
|
||||
<div> </div>
|
||||
<div class="msg"><?php echo $lang_label["no_access_text"];?></div>
|
||||
</div>
|
||||
|
|
|
@ -82,11 +82,12 @@ while ($row=mysql_fetch_array($result)){
|
|||
}
|
||||
if (mysql_num_rows($result)) {
|
||||
echo "</table>";
|
||||
echo "<table width='650px'>";
|
||||
} else {
|
||||
echo "<div class='nf'>".$lang_label["no_netprofiles"]."</div>";
|
||||
|
||||
echo "<table>";
|
||||
}
|
||||
echo "<table width='650px'>";
|
||||
|
||||
echo "<tr><td align='right'>";
|
||||
echo "<form method=post action='index.php?sec=gmodules&sec2=godmode/modules/manage_network_templates_form&id_np=-1'>";
|
||||
echo "<input type='submit' class='sub next' name='crt' value='".$lang_label["create"]."'>";
|
||||
|
|
|
@ -55,10 +55,12 @@ while ($rowdup=mysql_fetch_array($resq1)){
|
|||
$fecha_registro = $rowdup["fecha_registro"];
|
||||
if ($color == 1){
|
||||
$tdcolor = "datos";
|
||||
$tip= "tip";
|
||||
$color = 0;
|
||||
}
|
||||
else {
|
||||
$tdcolor = "datos2";
|
||||
$tip= "tip2";
|
||||
$color = 1;
|
||||
}
|
||||
echo "<tr><td class='$tdcolor'>";
|
||||
|
@ -72,7 +74,7 @@ while ($rowdup=mysql_fetch_array($resq1)){
|
|||
|
||||
$sql1='SELECT * FROM tusuario_perfil WHERE id_usuario = "'.$name.'"';
|
||||
$result=mysql_query($sql1);
|
||||
echo "<a href='#' class='tip'> <span>";
|
||||
echo "<a href='#' class='$tip'> <span>";
|
||||
if (mysql_num_rows($result)){
|
||||
while ($row=mysql_fetch_array($result)){
|
||||
echo dame_perfil($row["id_perfil"])."/ ";
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 892 B |
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 9.4 KiB |
|
@ -215,7 +215,7 @@ function no_permission () {
|
|||
require("config.php");
|
||||
require ("include/languages/language_".$language_code.".php");
|
||||
echo "<h3 class='error'>".$lang_label["no_permission_title"]."</h3>";
|
||||
echo "<img src='images/noaccess.gif' width='120'><br><br>";
|
||||
echo "<img src='images/noaccess.png' alt='No access' width='120'><br><br>";
|
||||
echo "<table width=550>";
|
||||
echo "<tr><td>";
|
||||
echo $lang_label["no_permission_text"];
|
||||
|
|
|
@ -26,7 +26,7 @@ if (comprueba_login() == 0) {
|
|||
echo "<h2>".$lang_label["incident_manag"]." > ";
|
||||
echo $lang_label["find_crit"]." <a href='help/".$help_code."/chap4.php#43' target='_help' class='help'> <span>".$lang_label["help"]."</span></a></h2>";
|
||||
echo "<div style='width:645'>";
|
||||
echo "<div style='float:right;'><img src='images/pulpo_lupa.gif' class='bot' align='left'></div>";
|
||||
echo "<div style='float:right;'><img src='images/pulpo_lupa.png' class='bot' align='left'></div>";
|
||||
?>
|
||||
<div style='float:left;'>
|
||||
<table width="500" cellpadding="4" cellspacing="4" class='databox'>
|
||||
|
|
Loading…
Reference in New Issue