-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
42 lines (27 loc) · 952 Bytes
/
index.php
File metadata and controls
42 lines (27 loc) · 952 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
session_start();
if(!isset($_SESSION['ssLoginRM'])){
header("location: autentikasi/index.php");
exit();
}
require "config.php";
$title = "Dashboard - Rekam Medis";
require "template/header.php";
require "template/navbar.php";
require "template/sidebar.php";
?>
<main class="col-md-9 ms-sm-auto col-lg-10 px-md-4 min-vh-100">
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
<h1 class="h2">Data Dashboard (Kunjungan Pasien)</h1>
<div class="btn-toolbar mb-2 mb-md-0">
<button type="button" class="btn btn-sm btn-outline-secondary dropdown-toggle d-flex align-items-center gap-1">
<svg class="bi"><use xlink:href="#calendar3"/></svg>
Tahun Ini
</button>
</div>
</div>
<canvas class="my-4 w-100" id="myChart" width="900" height="380"></canvas>
</main>
<?php
require "template/footer.php";
?>