forked from vaghasiyautsav/LabInventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFridge1.html
191 lines (184 loc) · 5.72 KB
/
Fridge1.html
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="TempRecord.css">
<title>Fridge#1</title>
<style>
#titleOfPage {
border: 1px solid black;
margin: 10px;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<div class="global-navbar">
<ul id="menubaritems">
<li class="menubarblocks"><a href="index.html">Home</a></li>
<li class="menubarblocks"><a href="fridgelist.html">Fridge List</a></li>
<li class="menubarblocks"><a href="freezerList.html">Freezer List</a></li>
<li class="menubarblocks"><a href="feedback.html">Feedback</a></li>
<li class="menubarblocks"><a href="aboutUs.html">About Us</a></li>
</ul>
</div>
<Div id="titleOfPage">
Fridge #1
</Div>
<div class="uppercontainer">
<table class="upperconttable">
<thead>
<th>Logo</th>
<th colspan="7">SOP</th>
</thead>
<tbody>
<tr>
<td>Title</td>
<td colspan="7">Title in detail</td>
</tr>
<tr>
<td>REC Number</td>
<td>Version</td>
<td>Issued Date</td>
<td>Effective Date</td>
<td>Review Date</td>
<td>Superseeds</td>
<td>Page</td>
</tr>
<tr>
<td>REC Number</td>
<td>Version</td>
<td>Issued Date</td>
<td>Effective Date</td>
<td>Review Date</td>
<td>Superseeds</td>
<td>Page</td>
</tr>
</tbody>
</table>
<div class="notice">
<h4>
Complete these Sisignature blocks to indicate review and approval of
this Document.
</h4>
</div>
<div class="approvalAndAuth">
<div class="approvalAndAuthHeading">
<h2>Approval and Authorisation</h2>
</div>
<table class="midtable">
<thead>
<th></th>
<th>Name</th>
<th>Job Title</th>
<th>Signature</th>
<th>Date</th>
</thead>
<tbody>
<tr>
<td>Prepared By:</td>
<td>Utsav Vaghasiya</td>
<td>Research Assitant</td>
<td>UV</td>
<td>30 JUN 2023</td>
</tr>
<tr>
<td>Approved By:</td>
<td>Deepak Kunigiri</td>
<td>Quality Manager</td>
<td>DK</td>
<td>30 JUN 2023</td>
</tr>
</tbody>
</table>
<div class="notice2">
<em>Note:</em> This form must be used in conjuction with SOP VAX
02211.
</div>
<div class="listedTable1">
<h3>1. Equipment Details</h3>
<div class="eqpDetailTable">
<table>
<thead>
<tr>
<th>Equipment Name</td>
<th>Fridge #7</td>
</tr>
</thead>
<tbody>
<tr>
<td>Make</td>
<td></td>
</tr>
<tr>
<td>Model</td>
<td></td>
</tr>
<tr>
<td>Serial number</td>
<td></td>
</tr>
<tr>
<td>Temprature Range</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<h3>2. Temprature Monitoring and Defrosting record</h3>
<div class="tempTable">
<table>
<thead>
<tr>
<th>Date</th>
<th>Min temp (oC)</th>
<th>Max temp (oC)</th>
<th>Currunt temp (oC)</th>
<th>In Range(Y/N)</th>
<th>Comments (e.g. defrosted, power outage, inventory, transfer, etc.)</td>
<th>Initial</th>
</tr>
</thead>
<tbody>
<tr>
<td>14 JUN 2023</td>
<td>2</td>
<td>3</td>
<td>5</td>
<td>Y</td>
<td>RESET</td>
<td>UV</td>
</tr>
<tr>
<td>22 JUN 2023</td>
<td>2</td>
<td>3</td>
<td>5</td>
<td>Y</td>
<td>RESET</td>
<td>UV</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<footer>
<div class="footer">
<h3>
VAXINE PTY LTD CONFIDENTIAL DOCUMENT - NOT TO BE COPIED OR SHARED WITHOUT AUTHORISATION.
</h3>
</div>
</footer>
</body>
</html>