-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.php
61 lines (51 loc) · 1.45 KB
/
client.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
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Felis Investigations</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="lib/css/felis.css">
</head>
<body>
<div class="client">
<nav>
<ul class="left">
<li><a href="./">The Felis Agency</a></li>
</ul>
<ul class="right">
<li><a href="./">Log out</a></li>
</ul>
</nav>
<header class="main">
<h1><img src="images/comfortable.png" alt="Felis Mascot"> Felis Investigations <img src="images/comfortable.png" alt="Felis Mascot"></h1>
</header>
<p class="date">4:44pm Tuesday, Feb 16, 2016</p>
<p>Welcome, <em>whoever you are...</em></p>
<p>Thank you for choosing Felis Investigations. I'm sure we will be able to solve whatever problem
you are having, be it big or small, criminal or civil, human or feline.</p>
<table>
<tr>
<th>Agent In Charge</th>
<th>Description</th>
<th>Most Recent Report</th>
<th>Status</th>
</tr>
<tr>
<td>Bogart, Humphrey</td>
<td><a href="case.php">Tabby sneaking around her place.</a></td>
<td>2-16-2016 11:32pm</td>
<td>Open</td>
</tr>
<tr>
<td>Martin, Harvey</td>
<td><a href="case.php">Garbage cans regularly knocked over.</a></td>
<td>2-12-2016 1:19am</td>
<td>Open</td>
</tr>
</table>
<footer>
<p>Copyright © 2016 Felis Investigations, Inc. All rights reserved.</p>
</footer>
</div>
</body>
</html>