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.
81 lines
3.1 KiB
81 lines
3.1 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>ISPChk</title>
|
|
<link href="bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<script src="jquery/jquery.js"></script>
|
|
<script src="Chart.js/Chart.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm">
|
|
<button id="btnDebug">DEBUG</button>
|
|
</div>
|
|
<div class="col-sm">
|
|
Hosts
|
|
<table id="tblHosts" class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">ID</th>
|
|
<th scope="col">Name</th>
|
|
<th scope="col">Hostname</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>1</td>
|
|
<td>Mark</td>
|
|
<td>Otto</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="col-sm">
|
|
Testlel
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-sm">
|
|
<form id="frmHostAdd">
|
|
<div>
|
|
<label for="inpNameAdd" class="form-label">Name</label>
|
|
<input type="text" class="form-control" id="inpNameAdd" aria-describedby="inpNameAddHelp">
|
|
<div id="inpNameAddHelp" class="form-text">This can be anything.</div>
|
|
</div>
|
|
<div>
|
|
<label for="inpHostNameAdd" class="form-label">Hostname</label>
|
|
<input type="text" class="form-control" id="inpHostNameAdd">
|
|
</div>
|
|
<div class="form-check">
|
|
<input type="checkbox" class="form-check-input" id="chkPing">
|
|
<label class="form-check-label" for="chkPing">Ping</label>
|
|
</div>
|
|
<div class="form-check">
|
|
<input type="checkbox" class="form-check-input" id="chkTCP">
|
|
<label class="form-check-label" for="chkTCP">TCP</label>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Add Host</button>
|
|
</form>
|
|
</div>
|
|
<div class="col-sm">
|
|
Testlel
|
|
</div>
|
|
<div class="col-sm">
|
|
<form id="frmHistory">
|
|
<div>
|
|
<label for="inpHistoryPast" class="form-label">Show past x minutes</label>
|
|
<input type="text" class="form-control" id="inpHistoryPast" aria-describedby="inpNameAddHelp" value="1440">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Show me</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div id="charts" class="row">
|
|
</div>
|
|
</div>
|
|
<script src="bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="ispchk.js"></script>
|
|
</body>
|
|
</html>
|