-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
27 lines (20 loc) · 937 Bytes
/
Copy pathsearch.php
File metadata and controls
27 lines (20 loc) · 937 Bytes
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
<?php include('./layouts/header.php') ?>
<div class="container-fluid">
<div class="d-flex justify-content-center">
<div class="container">
<p class="text-success display-4 text-center">Search for patient history</p>
<div class="row mt-5 justify-content-center">
<div class="col-md-6 text-center">
<form action="details.php">
<h4>Patient ID</h4>
<div class="form-group">
<input type="text" class="form-control" aria-describedby="emailHelp">
</div>
<button type="submit" class="btn btn-outline-secondary">Search</button>
</form>
</div>
</div>
</div>
</div>
</div>
<?php include('./layouts/footer.php') ?>