-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeader.php
More file actions
107 lines (95 loc) · 2.18 KB
/
Copy pathHeader.php
File metadata and controls
107 lines (95 loc) · 2.18 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php
include_once 'functions/Common.php';
?>
<style>
<!--
body {
padding: 75px 0px 75px 0px;
}
a {
text-decoration: none;
color: #008A12;
}
a:HOVER {
text-decoration: underline;
color: #008A12;
}
a:ACTIVE {
text-decoration: none;
color: #008A12;
}
.tblHdr {
border: 0px solid black;
width: 100%;
padding: 10px 5px 5px 10px;
display: inline;
}
table td {
text-align: center;
border: 1px solid black;
padding: 5px;
}
input {
width: 95%;
}
input[type="radio"] {
align: left;
width: 10%;
}
.divBev {
border: 2.5px solid #008A12;
background-color: #E8FFEB;
border-radius: 10px;
color: 00610d;
width: 150px;
height: 27px;
font-weight: bold;
display: table;
vertical-align: middle;
padding-top: 5px;
}
.devHeader {
position: fixed;
top: 0px;
width: 100%;
background-color: #FFF;
border-bottom: #008A12 5px double;
}
.messageOK {
color:#001EB5;
}
.headerIcone {
vertical-align:middle;
padding: 0px 5px 5px 0px;
}
-->
</style>
<div class=devHeader>
<div style="display: inline;">
<a href="index.php"><img src='icons/apache-php-mysql.jpg' height="58" /></a>
</div>
<table class="tblHdr">
<tr>
<td style="border: none">
<a href="index.php">
<div class=divBev><img alt="" src="icons/database.png" class=headerIcone width=20 height=23>DB Status</div>
</a>
</td>
<td style="border: none">
<a href="PersonList.php">
<div class=divBev><img alt="" src="icons/person.png" class=headerIcone width=20 height=20>Person List</div></a>
</td>
<td style="border: none">
<a href="PersonAdd.php">
<div class=divBev><img alt="" src="icons/add.png" class=headerIcone width=20 height=20>Add Person</div></a>
</td>
<td style="border: none">
<a href="PropertyList.php">
<div class=divBev><img alt="" src="icons/property.png" class=headerIcone width=18 height=18>Property List</div></a>
</td>
<td style="border: none">
<a href="PropertyAdd.php">
<div class=divBev><img alt="" src="icons/PropertyAdd.png" class=headerIcone width=18 height=18>Add Property</div></a></td>
</tr>
</table>
</div>