forked from zeus911/SSLChecker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
30 lines (28 loc) · 657 Bytes
/
Copy pathindex.php
File metadata and controls
30 lines (28 loc) · 657 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
<?php
session_start();
include_once("config.php");
$username = $_SESSION['username'];
if($username == "") {
$username = "Guest";
}
?>
<?php
include("header.php");
?>
<main class="main-container">
<div class="main-content">
<div class="row">
<div class="col-lg-12">
<div class="card">
<h4 class="card-title"><strong><?php echo lang('STATUS_MONITOR');?></strong></h4>
<div class="card-body">
<div id="statusElement1"></div>
</div>
</div>
</div>
</div>
</div>
<?php
include("footer.php");
?>
</html>