-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.php
executable file
·49 lines (48 loc) · 1.41 KB
/
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
43
44
45
46
47
48
49
<?php
include ("incl/header.incl.php");
?>
<h1>Home</h1>
<div class="container">
<div class="span">
<div class="span span3" >
<a href='farmers/index.php'>
<img src="img/farmer.jpg"><br/>
<strong> Farmers</strong>
</a>
</div>
<div class="span span3" >
<a href='employees/index.php'>
<img src="img/employees.jpg"><br/>
<strong> Employees</strong>
</a>
</div>
<div class="span span3" >
<a href='delivery/index.php'>
<img src="img/delivery.jpg"><br/>
<strong> Deliveries</strong>
</a>
</div>
<div class="span span3" >
<a href='reports/index.php'>
<img src="img/reports.png"><br/>
<strong> Reports</strong>
</a>
</div>
<div class="span span3" >
<a href='payment/index.php'>
<img src="img/payment.jpg"><br/>
<strong> Payments</strong>
</a>
</div>
<div class="span span3" >
<a href='settings/index.php'>
<img src="img/setting.png"><br/>
<strong> Settings</strong>
</a>
</div>
</div>
</div>
<?php
$footer = 'incl/footer.incl.php';
include ("$footer");
?>