-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
35 lines (31 loc) · 830 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
<?php include 'template/navbar.php' ?>
<?php include 'template/subnavbar.php' ?>
<?php
include 'sistem/db/MysqliDb.php';
include 'sistem/core.php';
$root = new Utility();
session_start();
$root->checkLogin('admin');
$root->checkUlangtahun();
$root->kirimOtomatis();
?>
<div class="main">
<div class="main-inner">
<div class="container">
<div class="row">
<!-- /span6 -->
<div class="span6">
<img src="asset/img/foto-bengkel.png" width="400" height="400" alt="">
<h2>foto bengkel</h2>
</div>
<div class="span6">
<img src="asset/img/visi.jpg" width="400" height="400" alt="">
</div>
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /main-inner -->
</div>
<?php include('template/footer.php') ?>