forked from woolz/Veterinary-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
42 lines (38 loc) · 926 Bytes
/
index.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
<?php
require 'vendor/autoload.php';
$app = new VeterinariaUnimonte\App;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
require 'includes/global.php';
?>
<title><?php echo $app->name; ?> - Home</title>
</head>
<body>
<!-- Navegação -->
<?php
$page_id = 0;
require 'includes/header.php';
?>
<!-- Container -->
<div class="container">
<div class="row">
<div class="col-lg-12">
<br>
<br>
<h1 class="text-center">Seja-bem-vindo</h1>
<?php
?>
<hr>
</div>
<div class="col-lg-12 text-center">
<p>Você pode movimentar-se pela guia de navegação que está no canto superior direito da página.</p>
</div>
<br>
<br>
</div>
</div>
</div>
</div>