-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
58 lines (52 loc) · 1.63 KB
/
home.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
<?php
require_once "validador.php";
?>
<html>
<head>
<meta charset="utf-8" />
<title>App Help Desk</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<style>
.card-home {
padding: 30px 0 0 0;
width: 100%;
margin: 0 auto;
}
</style>
</head>
<body>
<nav class="navbar navbar-dark bg-dark">
<a class="navbar-brand" href="home.php">
<img src="logo.png" width="30" height="30" class="d-inline-block align-top" alt="">
App Help Desk
</a>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="logoff.php">Sair</a>
</li>
</ul>
</nav>
<div class="container">
<div class="row">
<div class="card-home">
<div class="card">
<div class="card-header">
Menu
</div>
<div class="card-body">
<div class="row">
<div class="col-6 d-flex justify-content-center">
<a href="abrir_chamado.php">
<img src="formulario_abrir_chamado.png" width="70" height="70"></a>
</div>
<div class="col-6 d-flex justify-content-center">
<a href="consultar_chamado.php">
<img src="formulario_consultar_chamado.png" width="70" height="70"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>