-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettings.php
82 lines (62 loc) · 2.57 KB
/
Settings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
/*
GamePanel
Description: Sistema de administracion de servidores de juegos online
Author: Luiz Fernando gritti
License: Todos los derechos reservados a Imperial Host de Argentina S.A.
*/
include_once("include/config.php");
include_once("include/auth.php");
include_once("include/statusInfo.php");
include_once("include/SqlCon.php");
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/<?php echo $config['theme']; ?>/main.css">
</head>
<body leftmargin="0px" topmargin="0px" marginwidth="0px" marginheight="0px" onLoad="init()">
<div id="loading" style="position:absolute; top:60px; left:5px; overflow: hidden;"><img src="images/loading.gif" border="0"></div>
<script src="include/loading.js"></script>
<table border="0" cellpadding="0" cellspacing="0" align="center" width="100%" height="40" background="css/<?php echo $config['theme']; ?>/img/largeGrad.png">
<tr>
<td align="center" valign="middle"><span class="top_titles">Configuraciones</span></td>
</tr>
</table>
<br /><br />
<table border="0" class="tablez" width="600" cellpadding="0" cellspacing="0" align="center">
<tr background="css/<?php echo $config['theme']; ?>/img/smallGrad.png" height="20">
<td colspan="3" align="left"> <span class="top_titles">Mis Configuraciones</span></td>
</tr>
<tr class="rowz_title">
<td colspan="2"> </td>
</tr>
<tr class="rowz_title">
<td align="right"><span class="rowz_alt">Usuario: </span></td>
<td align="left"><?php echo $GPXuserName; ?></td>
</tr>
<tr class="rowz_title">
<td align="right"><span class="rowz_alt">Contraseña: </span></td>
<td align="left"><a href="ChangePassword.php">Click para cambiar de Contraseña</a></td>
</tr>
<?php
// Ip Address stuff
$ip = $_SERVER['REMOTE_ADDR'];
$hostAddress = gethostbyaddr($ip);
?>
<tr class="rowz_title">
<td colspan="2"> </td>
</tr>
<tr class="rowz_title">
<td align="right"><span class="rowz_alt">Tu IP es: </span></td>
<td align="left"><?php echo $ip; ?></td>
</tr>
<tr class="rowz_title">
<td align="right"><span class="rowz_alt">Tu hostname es: </span></td>
<td align="left"><?php if(!empty($hostAddress)) echo $hostAddress; ?></td>
</tr>
<tr class="rowz_title">
<td colspan="2">Para mas seguridad de los clentes se guardan la ip y hostname de cada vez que te contes al panel de <a href="www.gamepanel.com.ar">www.gamepanel.com.ar</a> by <a href="www.imperialhost.com.ar">Imperial Host</a></td>
</tr>
</table>
</body>
</html>