2019-06-15 17:53:21 +03:00

39 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Init</title>
<script src="bundle.js"></script>
</head>
<style>
.progress {
height: 40px;
margin-bottom: 6px;
}
.progress-bar {
background-color: #e8fbe8;
color: black;
font-size: 20px;
}
.progress-error {
background-color: #fdd8d8;
}
</style>
<body>
<section class="container">
<div class="input-group border-primary mb-5">
<input type="text" class="form-control" placeholder="Node IP" id="node-ip">
<input type="text" class="form-control" placeholder="Binary Source" id="binary-url">
<button type="button" class="btn btn-outline-secondary" id="start-check">Start Check</button>
</div>
Last Checked
<div class="border-primary container" id="zoneList">
</div>
</section>
</body>
</html>