You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
1.3 KiB
90 lines
1.3 KiB
9 years ago
|
<?php $page = 'home';
|
||
|
include "_start.php"; ?>
|
||
|
|
||
|
<h1>System Status</h1>
|
||
|
|
||
|
<div class="Box">
|
||
|
<h2>Runtime</h2>
|
||
|
<table>
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<th>Uptime:</th>
|
||
|
<td id="uptime">%uptime%</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>Free heap:</th>
|
||
|
<td id="heap">%heap%</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
<div class="Box">
|
||
|
<h2>WiFi</h2>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th>WiFi mode:</th>
|
||
|
<td id="wmode">%wifiMode%</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
<!-- WiFi info is read & updated using AJAX -->
|
||
|
|
||
|
<div class="Box sta-only" style="display:none">
|
||
|
<h2>WiFi Station</h2>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th>SSID:</th>
|
||
|
<td id="staSSID"></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>RSSI:</th>
|
||
|
<td>
|
||
|
<span id="staRSSIperc"></span>,
|
||
|
<span id="staRSSI"></span>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>MAC:</th>
|
||
|
<td id="staMAC"></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
<div class="Box ap-only" style="display:none">
|
||
|
<h2>WiFi AP</h2>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th>SSID:</th>
|
||
|
<td id="apSSID"></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>Hidden:</th>
|
||
|
<td id="apHidden"></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>Auth. mode:</th>
|
||
|
<td id="apAuth"></td>
|
||
|
</tr>
|
||
|
<tr class="ap-auth-only">
|
||
|
<th>Password:</th>
|
||
|
<td id="apPwd"></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>Channel:</th>
|
||
|
<td id="apChan"></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>MAC:</th>
|
||
|
<td id="apMAC"></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
<script>
|
||
|
$().ready(page_status.init);
|
||
|
</script>
|
||
|
|
||
|
<?php include "_end.php"; ?>
|