2019-06-15 19:25:55 +03:00

41 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cosmic Salmon</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="m-5"><h1>Cosmic Salmon. Hook A Fish</h1></div>
<div class="input-group border-primary m-5">
<input type="text" class="form-control" placeholder="Node IP" id="node-ip" value="1">
<input type="text" class="form-control" placeholder="Binary Source" id="binary-url" value="1">
<button type="button" class="btn btn-outline-secondary" id="start-check">Start Check</button>
</div>
<div class="m-5"><h3>Last Checked</h3>
<div class="border-primary container" id="zoneList">
</div>
</div>
</section>
</body>
</html>