-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrecord-request.php
53 lines (48 loc) · 1.53 KB
/
record-request.php
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php include 'header.php'; ?>
<div class="container content">
<div class="col-md-12">
<h2><b>Patient Record Request</b></h2>
<br><br>
<p>To request
<b class="thicker">Fenise Hamilton's
</b> record from <b>X</b> please enter the following information.</p>
<br>
<form action="" method="POST">
<div class="row">
<div class="col-xs-12 col-md-6">
<div class="form-group">
<input class="form-control" type="text" name="hw_id" placeholder="Healthwise ID" required>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-6">
<div class="form-group">
<input type="text" class="form-control" name="full_name" placeholder="Full Name" required>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-6">
<div class="form-group">
<input type="password" class="form-control" name="password" placeholder="Password" required>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-3">
<div style="margin-bottom: 5px;">
<button name="submit" class="btn btn-block btn-submit-rq">Request Record</button>
</div>
</div>
<div class="col-xs-12 col-md-3">
<button class="btn btn-block btn-cancel-rq" onclick="reset();">Cancel</button>
</div>
<div class="col-xs-6 col-md-6 hidden-md-down">
</div>
</div>
</form>
</div>
</div>
<br><br><br><br><br><br>
<?php include 'footer.php'; ?>