summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/nada.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/WebConsole/nada.php')
-rw-r--r--admin/WebConsole/nada.php33
1 files changed, 30 insertions, 3 deletions
diff --git a/admin/WebConsole/nada.php b/admin/WebConsole/nada.php
index 9e0aa255..9cd4d028 100644
--- a/admin/WebConsole/nada.php
+++ b/admin/WebConsole/nada.php
@@ -221,19 +221,46 @@ if (empty($data->project)) {
</body>
</html>
-<?php } else { ?>
+<?php }
+else {
+$data = json_decode(@file_get_contents(__DIR__ . '/../doc/VERSION.json'));
+if (empty($data->project)) {
+ $version = "OpenGnsys";
+} else {
+ $version = @$data->project.' ' . @$data->version.' '
+ . (isset($data->codename) ? '('.$data->codename.') ' : '') . @$data->release;
+}
+?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" type="text/css" href="./estilos.css">
</head>
<body>
+&nbsp;
+&nbsp;
+<div class="cabeceras">
+ <div align="center" > Tip of the Day! </div>
+ &nbsp;
+ &nbsp;
-"Here we will show our content"
+<div align="center" class="sobrecabeceras"> ¿Sabías que...?</div>
+ &nbsp;
+ &nbsp;
+<div align="center" class="subcabeceras"><?php echo $Tip[array_rand($Tip)];?></div>
+ <div>
+ &nbsp;
+ &nbsp;
+ <div class="subcabeceras">Server IP: <?php echo $_SESSION['ipdevice']; ?> </div>
+ <div class="subcabeceras">Sistema : <?php echo $tipodevice; ?> </div>
+ <div class="subcabeceras">Navegador: <?php echo $nav; ?> v.<?php echo $vernav; ?> </div>
+ </div>
+ &nbsp;
+ &nbsp;
+</div>
</body>
</html>
-
<?php } ?>