-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·66 lines (55 loc) · 2.38 KB
/
index.php
File metadata and controls
executable file
·66 lines (55 loc) · 2.38 KB
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
<?php
if(!isset($_SESSION)) session_start();
if((!isset($_SESSION['admlogin'])) OR (!isset($_SESSION['sinlogin']))){
session_unset();
session_destroy();
}
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>MySE | Login</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"/>
<meta charset="UTF-8"/>
<meta name="description" content="Sistema de Gerenciamento de Solicitaçao de Serviços"/>
<meta name="keywords" content="interface, home, fametro, serviços, autonomo, condominio"/>
<meta name="robots" content="nofollow, index"/>
<meta name="viewport" content="width=device-width initial-scale=1.0"/>
<link rel='shortcut icon' type='image/x-icon' href='assets/img/icone-login-mySE 136x155.png' />
<!-- Iconografia -->
<link rel="stylesheet" type="text/css" href="assets/addons/font-awesome-4.7.0/css/font-awesome.css"/>
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="assets/addons/bootstrap/css/bootstrap.min.css">
<link rel='stylesheet' type="text/css" href='assets/css/geral2.css' />
<script src='assets/js/funcoes.js'></script>
</head>
<body>
<header>
<nav>
<ul>
<li>MySE</li>
</ul>
</nav>
</header>
<div class="corpo">
<div class="formulario">
<!--<p> Acesso </p>-->
<div class="logo-login">
<img src="assets/img/myse-1250x747.png" Title="Logue-se!"><br>
</div>
<form name="formulario" target="_self" method="POST" action="control/controlRealizarLogin.php" ;>
<input type='text' name='login' id='login' placeholder="login" autofocus required/><br><br>
<input type='password' name='senha' id='senha' placeholder="senha" required/>
<br/><br/>
<input name='logar' type='submit' value="Entrar">
</form>
<div class="linha">
<a class="btn btn-danger btn-xs" href="view/cliente/cadastrarCliente.php">Cadastre-se   <span><i class="fa fa-user-plus"></i></span></a>
</div>
</div>
</div>
<!-- RODAPE -->
<?php include 'view/layout/footer.php'; ?>
</body>
</html>