This repository was archived by the owner on Jul 12, 2019. It is now read-only.
forked from utramig42/JobSmart-WEB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
67 lines (53 loc) · 1.79 KB
/
home.php
File metadata and controls
67 lines (53 loc) · 1.79 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
67
<?php
// Configurações
include_once 'includes/config.php';
include_once 'includes/headers/header-init.php';
// CSS
include_once 'includes/headers/header-styles.php';
// Default Navbar
include_once 'includes/navbar/navbar-main.php';
$fileName = ucfirst(str_replace(".php", '', basename(__FILE__)));
?>
<title>Job'Smart - <?php echo $fileName ?> </title>
<!-- Global Style CSS -->
<link rel="stylesheet" type="text/css" href="css/global-style.css">
<!-- Table Style CSS -->
<link rel="stylesheet" href="css/tables.css">
<div id="wrapper">
<!-- Sidebar -->
<?php
include_once 'includes/navbar/navbar-sidebar.php';
?>
<div id="content-wrapper">
<div class="container-fluid">
<!-- Breadcrumbs-->
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="index.php">Painel de controle</a>
</li>
<li class="breadcrumb-item active text-capitalize">
<?php
// Placing Header
$fileName = 'Dashboard';
?>
</li>
</ol>
<h1 class="text-center text-upper"> Bem-Vindo </h1>
<p class="text-center h5 d-flex mt-5 justify-content-center mb-5">
Acesse o menu lateral para ter acesso as funcionalidades do sistema.
</p>
<center class="mt-2">
<img src="img/JOBSMART.png" />
</center>
</div>
<!-- /.container-fluid -->
</div>
<!-- /.content-wrapper -->
</div>
<!-- /#wrapper -->
<?php
include_once 'includes/footers/footer-init.php';
include_once 'includes/footers/footer-modal.php';
include_once 'includes/footers/footer-scripts.php';
include_once 'includes/footers/footer-final.php';
?>