-
Notifications
You must be signed in to change notification settings - Fork 2
/
disposition.php
67 lines (64 loc) · 2.16 KB
/
disposition.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
<!-- disposition.php -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Disposition</title>
<link rel="stylesheet" href="css/disposition.css">
</head>
<body>
<?php include 'header.php'; ?>
<main class="content">
<div class="table-title">Disposition</div>
<table>
<thead>
<tr>
<th>Item No.</th>
<th>Item Description</th>
<th>Quantity</th>
<th>Reason for Disposition</th>
<th>Disposition Method</th>
<th>Date of Disposition</th>
<th>Dispositioned by</th>
<th>Comments</th>
</tr>
</thead>
<tbody>
<tr>
<td>001</td>
<td>Ethanol, 95%, 500 mL</td>
<td>2 bottles</td>
<td>Expired</td>
<td>Hazardous Waste Disposal</td>
<td>09/01/2024</td>
<td>Name</td>
<td>Properly labeled, disposed via approved vendor</td>
</tr>
<tr>
<td>002</td>
<td>Centrifuge, Model ABC</td>
<td>1 unit</td>
<td>Malfunctioned, Unrepairable</td>
<td>Decommission and Recycle</td>
<td>08/30/2024</td>
<td>Name</td>
<td>Decommissioned, parts recycled</td>
</tr>
<tr>
<td>003</td>
<td>Safety Goggles, Anti-Fog</td>
<td>5 pairs</td>
<td>Damaged</td>
<td>General Waste Disposal</td>
<td>08/28/2024</td>
<td>Name</td>
<td>Disposed of according to lab protocol</td>
</tr>
</tbody>
</table>
</main>
<?php include 'footer.php'; ?>
<script src="script.js"></script>
</body>
</html>