forked from jester-frost/ragnabrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
servidores.php
executable file
·43 lines (40 loc) · 995 Bytes
/
servidores.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
<?php
include("header.php");
?>
<?php
include("connection.php");
?>
<?php
session_start();
if (!isset ($_SESSION["login"]) || !isset ($_SESSION["senha"])) {
header("location: login.php");
exit;
}else {
$msg = "Logado";
}
?>
<body>
<div class="limit">
<div class="conteudo">
<div class="dragme">
<div class="box servers">
<div class="top">
<h1><i class="bal-ico"></i>Seleção de Serviços</h1>
</div>
<ul>
<li class="first"><a href="login.php">Servidor 1</a></li>
<li><a href="login.php">Servidor 2</a></li>
<li><a href="login.php">Servidor 2</a></li>
<li><a href="login.php">Servidor 2</a></li>
</ul>
<div class="btns clearfix">
<button type="submit" class="button white cancel" >Ok</button>
<a href="index.php" class="button white cancel">Cancel</a>
</div>
</div>
</div>
</div>
</div>
<?php
include("footer.php");
?>