-
Notifications
You must be signed in to change notification settings - Fork 0
/
addPatient.php
42 lines (33 loc) · 1.14 KB
/
addPatient.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
<?php
require_once './controller/DBConnect.php';
$db->authLogin("1");
?>
<?php
$title = "Add Patient";
include './views/layout/header.php';
?>
<?php
$addPatientActive = "active";
include './views/layout/topNavBar.php';
?>
<div class="container bg-dark text-info p-4 rounded" style="box-shadow: 0px 0px 20px 20px #cdc6c6;;">
<div class="row justify-content-center">
<div class="col-md-8">
<form method="post" class="addPatient" id="addPatient" role="form" action="">
<?php
include './views/partials/addPatientBasic.php';
?>
<?php
include './views/partials/addPatientMedical.php';
?>
<button type="submit" name="addPatientFormSubBtn" class="btn btn-primary addPatientFormSubBtn fw-bolder">Submit</button>
</form>
<div class="alert mt-3 m-1 p-2 rounded addPatientErrorMsgContainer">
<i class="fas fa-exclamation-triangle"></i> <span class="addPatientErrorMsg"></span>
</div>
</div>
</div>
</div>
<?php
include './views/layout/footer.php';
?>