| Server IP : 20.75.53.88 / Your IP : 216.73.217.72 [ Web Server : Apache System : Linux VMRALP-3 4.4.0-256-generic #290~14.04.1-Ubuntu SMP Thu Jun 20 09:24:50 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29+esm15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Domains : 3 Domains MySQL : ON | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/siac/cmaltosanto/admin/ |
Upload File : |
<?php
session_start();
if ($_GET["act"]=="logout") {
unset($_SESSION['login']);
unset($_SESSION['password']);
session_destroy();
}
include_once("../conexaoBanco.php");
// include_once("aviso.php");
$conn = conexao::getInstance();
$prefeitura = $conn->query("select * from orgao");
$cliente = $prefeitura->fetch(PDO::FETCH_OBJ);
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SIAC | Login</title>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<link rel="icon" href="dist/img/favicon.png"/>
<meta property="og:site_name" content="Sistema de Ouvidoria"/>
<meta property="og:title" content="Sistema de Ouvidoria">
<meta property="og:description" content="Sistema de gestão de Ouvidoria">
<meta property="og:image" content="http://www.gtcontroller.com.br/mailing/sistemas/img/icone.jpg">
<meta property="og:type" content="website">
<meta property="og:url" content="http://www.gtcontroller.com.br/Ouvidoria/dev_new">
<meta property="og:locale" content="pt_BR"/>
<ToDO Barra mobile>
<!--cor da barra mobile-->
<meta name="theme-color" content="#00AFEF"/>
<meta name="apple-mobile-web-app-status-bar-style" content="#00AFEF">
<meta name="msapplication-navbutton-color" content="#00AFEF">
<!--end cor da barra mobile-->
</ToDO>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.7 -->
<link rel="stylesheet" href="components/bootstrap/dist/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="components/font-awesome/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/4.4.8/collection/icon/icon.css">
<!-- Theme style -->
<link rel="stylesheet" href="dist/css/AdminLTE.min.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="dist/css/style.css">
<!-- Google Font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic">
</head>
<body class="login-page">
<div class="agile-login">
<div class="wrapper">
<h2>SIAC</h2>
<h5><?php echo $cliente->nome ?></h5>
<div class="w3ls-form">
<form method="post" action="loga.php" id="formlogin" name="formlogin">
<label>Usuário</label>
<input type="text" name="txt_usuario" required/>
<label>Senha</label>
<input type="password" name="txt_senha" required/>
<!--<a href="#" class="pass">Forgot Password ?</a>-->
<input type="submit" value="Acessar sistema"/>
</form>
</div>
<div class="agile-icons">
<h4><?php echo $cliente->empresa_responsavel ?></h4>
</div>
</div>
<br>
</div>
</body>
</html>