Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

<!

-- Pages 2-30 -->


<!-- Add more pages as needed -->
<!-- Each page represents a clinical session entry -->
<div class="page">
<h1>Clinical Rotation Log Entry</h1>

<h2>Patient Information</h2>
<table>
<tr>
<th>Patient Name:</th>
<td><input type="text" name="patient_name"></td>
</tr>
<tr>
<th>Date of Birth:</th>
<td><input type="date" name="date_of_birth"></td>
</tr>
<tr>
<th>Medical History:</th>
<td><textarea name="medical_history"></textarea></td>
</tr>
</table>

<h2>Dental Procedures and Treatments</h2>


<table>
<tr>
<th>Date</th>
<th>Procedure</th>
<th>Supervisor</th>
<th>Notes</th>
</tr>
<tr>
<td><input type="date" name="date"></td>
<td><input type="text" name="procedure"></td>
<td><input type="text" name="supervisor"></td>
<td><textarea name="notes"></textarea></td>
</tr>
</table>
</div>

</body>
</html>

You might also like