2019-06-15 11:54:30 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2019-06-15 19:25:55 +03:00
|
|
|
<title>Cosmic Salmon</title>
|
2019-06-15 11:54:30 +03:00
|
|
|
<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">
|
2019-06-15 19:25:55 +03:00
|
|
|
<div class="m-5"><h1>Cosmic Salmon. Hook A Fish</h1></div>
|
|
|
|
<div class="input-group border-primary m-5">
|
2019-06-16 11:11:50 +03:00
|
|
|
<input type="text" class="form-control" placeholder="Node IP" id="node-ip" value="207.154.210.117">
|
|
|
|
<input type="text" class="form-control" placeholder="Node Port" id="node-port" value="26657">
|
|
|
|
<input type="text" class="form-control" placeholder="Binary Source" id="binary-url" value="QmQ69JoPDaKFpPSbWvvUGRGG5E83u6nTP2hRegmCoa6aW5">
|
|
|
|
<input type="text" class="form-control" placeholder="Name" id="node-name" value="name service">
|
2019-06-15 17:11:40 +03:00
|
|
|
<button type="button" class="btn btn-outline-secondary" id="start-check">Start Check</button>
|
2019-06-15 11:54:30 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2019-06-15 19:25:55 +03:00
|
|
|
<div class="m-5"><h3>Last Checked</h3>
|
2019-06-15 13:13:56 +03:00
|
|
|
<div class="border-primary container" id="zoneList">
|
|
|
|
|
2019-06-15 11:54:30 +03:00
|
|
|
</div>
|
2019-06-15 19:25:55 +03:00
|
|
|
</div>
|
2019-06-15 11:54:30 +03:00
|
|
|
</section>
|
|
|
|
</body>
|
|
|
|
</html>
|