Files
hpos-web/scripts/report_template.html
Pritimay Sarkar ca71641341 add report html template
- change arduino stub output to generate error
2023-08-06 13:55:17 +05:30

40 lines
675 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Report</title>
<style>
.person-deatils-row {
display: flex;
flex-direction: row;
}
.person-details-col {
display: flex;
flex-direction: column;
height: 100px;
width: 350px;
}
</style>
</head>
<body>
<table style="border: 1px solid black;">
<tr class="person-deatils-row">
<td class="person-details-col">
<div>Person Name : </div>
<div>Age & Sex : </div>
<div>Sample type : </div>
<div>Family History of Sickle Cell Anemia (Yes / No): </div>
</td>
<td class="person-details-col">
<div>Received on : </div>
<div>Reported on : </div>
<div>Ref. Doctor : </div>
<div>Serial No: </div>
</td>
</tr>
</table>
</body>
</html>