%PDF- %PDF-
| Direktori : /home/vacivi36/app/ |
| Current File : /home/vacivi36/app/index.php |
<?php
session_start();
?>
<!doctype html>
<html lang="pt-Br">
<head>
<title>VACIVITTA</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body class="img js-fullheight" style="background-image: url(images/back.jpg);">
<section class="ftco-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 text-center mb-5">
<h2 class="heading-section">VACIVITTA</h2>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4">
<div class="login-wrap p-0">
<h3 class="mb-4 text-center">SEU PORTAL CORPORATIVO!</h3>
<form class="signin-form " method="POST" action="valida.php">
<div class="form-group ">
<input type="text " class="form-control " id="inputEmail" name="email" placeholder="Usuário " required>
</div>
<div class="form-group ">
<input id="password-field" type="password " class="form-control " placeholder="Senha " name="senha" required>
<span toggle="#password-field " class="fa fa-fw fa-eye field-icon toggle-password "></span>
</div>
<div class="form-group ">
<button type="submit" class="form-control btn btn-primary submit px-3 ">Entrar</button>
</div>
</form>
<p class="w-100 text-center ">— App Vacivitta —</p>
<p class="text-center text-danger">
<?php if (isset($_SESSION['loginErro'])) {
echo $_SESSION['loginErro'];
unset($_SESSION['loginErro']);
} ?>
</p>
<p class="text-center text-success">
<?php
if (isset($_SESSION['logindeslogado'])) {
echo $_SESSION['logindeslogado'];
unset($_SESSION['logindeslogado']);
}
?>
</div>
</div>
</div>
</div>
</section>
<script src="js/jquery.min.js "></script>
<script src="js/popper.js "></script>
<script src="js/bootstrap.min.js "></script>
<script src="js/main.js "></script>
</body>
</html>