2019-06-15 11:54:30 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Init</title>
|
|
|
|
<script src="bundle.js"></script>
|
|
|
|
</head>
|
2019-06-15 13:13:56 +03:00
|
|
|
<style>
|
|
|
|
.progress {
|
|
|
|
height: 40px;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
}
|
|
|
|
.progress-bar {
|
|
|
|
background-color: #e8fbe8;
|
|
|
|
color: black;
|
2019-06-15 17:53:21 +03:00
|
|
|
font-size: 20px;
|
2019-06-15 13:13:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.progress-error {
|
|
|
|
background-color: #fdd8d8;
|
|
|
|
}
|
|
|
|
</style>
|
2019-06-15 11:54:30 +03:00
|
|
|
<body>
|
|
|
|
<section class="container">
|
|
|
|
<div class="input-group border-primary mb-5">
|
2019-06-15 17:11:40 +03:00
|
|
|
<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>
|
2019-06-15 11:54:30 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
Last Checked
|
2019-06-15 13:13:56 +03:00
|
|
|
<div class="border-primary container" id="zoneList">
|
|
|
|
|
2019-06-15 11:54:30 +03:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</body>
|
|
|
|
</html>
|