add report html template

- change arduino stub output to generate error
This commit is contained in:
Pritimay Sarkar
2023-08-06 13:55:17 +05:30
parent 45aecc658e
commit ca71641341

View File

@@ -0,0 +1,39 @@
<!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>