-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.php
79 lines (68 loc) · 2.47 KB
/
report.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Felis Investigations Case Report</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="lib/css/felis.css">
</head>
<body>
<div class="report">
<nav>
<ul class="left">
<li><a href="./">The Felis Agency</a></li>
</ul>
<ul class="right">
<li><a href="staff.php">Staff</a></li>
<li><a href="cases.php">Cases</a></li>
<li><a href="case.php">Case</a></li>
<li><a href="./">Log out</a></li>
</ul>
</nav>
<header class="main">
<h1><img src="images/comfortable.png" alt="Felis Mascot"> Felis Case Report<img src="images/comfortable.png" alt="Felis Mascot"></h1>
</header>
<form>
<fieldset>
<legend>Case Report</legend>
<p class="right"><a href="case.php">Back to Case</a></p>
<p>Client: Helm, Levon</p>
<p>Case: Felix caterwauling every night.</p>
<h2>Report</h2>
<div class="report">
<p>
<label for="date">Date and Time (for the activity)</label><br>
<input type="text" id="date" name="date" placeholder="mm/dd/yyyy h:mmam">
</p>
<p>
<label for="summary">Summary</label><br>
<textarea id="summary" name="summary" placeholder="Summary">Surveillance of neighborhood for two hours. Spotted a very attractive Siamese cat wandering though. Caterwauling commenced.</textarea>
</p>
<p>
<label for="detail">Detail</label><br>
<textarea id="detail" name="detail" placeholder="Detail">Arrived at 1:00am. Everything was quiet for about an hour. Suddenly, a Siamese cat wandered by and the caterwauling began. I think the Siamese was enjoying the attention, since she hung around for over an hour. Felix didn't shut up until she finally left. She didn't seem interested in him, though.</textarea>
</p>
<p>
<input type="submit" value="OK">
</p>
</div>
<h2>Pictures</h2>
<table>
<tr><th> </th><th>Time</th><th>Description</th></tr>
<tr><td><a href="images/offender.jpg"><img src="images/offender.jpg" alt="Offender image"></a></td><td>2:05am</td><td>The offender</td></tr>
</table>
<p class="center">
<label for="desc">New photo description: </label>
<input type="text" id="desc" name="desc" placeholder="Description"></p>
<p class="center">
<input type="file">
<input type="submit" value="OK">
</p>
</fieldset>
</form>
<footer>
<p>Copyright © 2016 Felis Investigations, Inc. All rights reserved.</p>
</footer>
</div>
</body>
</html>