forked from RickyLeRoi/proges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
32 lines (27 loc) · 1.03 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
<!DOCTYPE html>
<html lang="it">
<head>
<!-- blu #071E3F arancione #EA640C -->
<meta charset="utf-8">
<title>Gestionale Provenzano</title>
<meta name="description" content="Gestionale per etichettificio Provenzano"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<?php include_once("template/parrot/style.php") // Carica gli stili del tema in uso ?>
<?php include_once("function/session.php");
include_once("DB/config.php") ?>
</head>
<body>
<!-- #### Navbars #### -->
<?php include_once("template/parrot/navbar.php") ?>
<div class="masthead">
<div class="masthead-title">
<div class="container">
<img src="images/logob.png" width="80%" alt=""><br/>
Felice di rivederti <span><?php echo $user; ?></span>
<small>Gestionale & Fatturazione</small>
</div>
</div>
</div>
<?php include_once("template/parrot/foot.php") ?>
</body>
</html>