-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.php
30 lines (28 loc) · 871 Bytes
/
home.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
<!-- Header-->
<header class="bg-dark py-5" id="main-header">
<div class="container px-4 px-lg-5 my-5">
<div class="text-center text-white">
<h1 class="display-4 fw-bolder"><?php echo $_settings->info('name') ?></h1>
<p class="lead fw-normal text-white-50 mb-0">
<button class="btn btn-sm btn-primary" type="button" id="create_appointment">Schedule Appointment Now</button>
</p>
</div>
</div>
</header>
<!-- Section-->
<?php
$sched_arr = array();
$max = 0;
?>
<section class="py-5">
<div class="container px-4 px-lg-5 mt-5">
<?php include('about.html') ?>
</div>
</section>
<script>
$(function(){
$('#create_appointment').click(function(){
uni_modal("Appointment Form","admin/appointments/manage_appointment.php",'mid-large')
})
})
</script>