-
Notifications
You must be signed in to change notification settings - Fork 0
/
amblog.php
37 lines (34 loc) · 1.59 KB
/
amblog.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
<?php require './monitor/monitoring3.php'; ?>
<?php include "./inc/header.php"; ?>
<div class="container">
<div class="section">
<div class="columns">
<div class="column is-6">
<h3 class="subtitle">Details:</h3>
<div class="content">
<p>Monitoring started: <b><?= $monitor_started; ?></b></p>
<p>Current status: <b><?= $monitor_status; ?></b></p>
<p><b><?= $monitor_info; ?></b></p>
<p>
Contact support:
<span class="icon is-large">
<a href="mailto:[email protected]" class="has-text-success">
<i class="fas fa-lg fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/candrareza/" target="_blank" class="has-text-success">
<i class="fab fa-lg fa-linkedin"></i>
</a>
</span>
</p>
</div>
</ul>
</div>
<div class="column is-6">
<h3 class="subtitle has-text-centered">Overall uptime: <?= $monitor_uptime; ?>%</h3>
<canvas id="uptime"></canvas>
</div>
</div>
</div>
</div>
<?php include "./inc/footer.php"; ?>