M
M
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Patient Information</title>
<section class="form-container">
<h3>Patient Form</h3>
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Name" required>
</div>
<div class="form-group">
<label for="case_number">Case Number:</label>
<input type="text" id="case_number" name="case_number" placeholder="Case
Number">
</div>
<div class="form-group">
<label for="category">Category:</label>
<select id="category" name="category" class="select2">
<option value="" disabled selected>Category</option>
<option value="Charity Male Out-Patient">Charity Male
Out-Patient</option>
<option value="Charity Female Out-Patient">Charity Female Out-
Patient</option>
<option value="Charity Male In-Patient">Charity Male
In-Patient</option>
<option value="Charity Female In-Patient">Charity Female
In-Patient</option>
<option value="Pay Male Out-Patient">Pay Male Out-Patient</option>
<option value="Pay Female Out-Patient">Pay Female Out-Patient</option>
<option value="Pay Male In-Patient">Pay Male In-Patient</option>
<option value="Pay Female In-Patient">Pay Female In-Patient</option>
<option value="Charity Male ER-Patient">Charity Male
ER-Patient</option>
<option value="Charity Female ER-Patient">Charity Female
ER-Patient</option>
</select>
</div>
<div class="form-group">
<label for="procedure_category">Procedure Category:</label>
<select id="procedure_category" name="procedure_category" class="select2"
required>
<option value="" disabled selected>Procedure Category</option>
<option value="Procedure Charity Male Out-Patient">Procedure Charity
Male Out-Patient</option>
<option value="Procedure Charity Female Out-Patient">Procedure Charity
Female Out-Patient</option>
<option value="Procedure Pay Male Out-Patient">Procedure Pay Male Out-
Patient</option>
<option value="Procedure Pay Female Out-Patient">Procedure Pay Female
Out-Patient</option>
</select>
</div>
<div class="form-group">
<label for="philhealth">Philhealth:</label>
<select id="philhealth" name="philhealth" class="select2">
<option value="" disabled selected>Philhealth</option>
<option value="Philhealth Charity Male">Philhealth Charity
Male</option>
<option value="Philhealth Charity Female">Philhealth Charity
Female</option>
<option value="Philhealth Pay Male">Philhealth Pay Male</option>
<option value="Philhealth Pay Female">Philhealth Pay Female</option>
</select>
</div>
<div class="form-group">
<label for="procedure">Procedure:</label>
<select id="procedure" name="procedure" class="select2" required>
<option value="" disabled selected>Procedure</option>
<option value="Ocular Ultrasound (UTZ)">Ocular Ultrasound
(UTZ)</option>
<!-- Add other procedure options here -->
</select>
</div>
<div class="form-group">
<label for="laterality">Laterality:</label>
<select id="laterality" name="laterality" class="select2" required>
<option value="" disabled selected>Laterality</option>
<option value="Right Eye (OD)">Right Eye (OD)</option>
<option value="Left Eye (OS)">Left Eye (OS)</option>
<option value="Both Eyes (OU)">Both Eyes (OU)</option>
</select>
</div>
<div class="form-group">
<label for="receipt_number">Receipt Number:</label>
<input type="text" id="receipt_number" name="receipt_number"
placeholder="Receipt Number">
</div>
<div class="form-group">
<input type="submit" value="Submit">
</div>
</form>
</section>
</body>
</html>