mirror of
https://github.com/fluencelabs/cosmos-hackathon-frontend
synced 2025-05-02 17:12:15 +00:00
54 lines
2.0 KiB
HTML
54 lines
2.0 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;
|
|
}
|
|
|
|
.list-info p {
|
|
margin-bottom: 0;
|
|
}
|
|
</style>
|
|
<body>
|
|
<section class="container">
|
|
<div class="m-5"><h1>Cosmic Salmon. Hook A Fish</h1></div>
|
|
<div class="m-1 bg-light">
|
|
<div class="input-group border-primary">
|
|
<input type="text" class="form-control m-2" placeholder="Node IP" id="node-ip"
|
|
value="207.154.210.117">
|
|
<input type="text" class="form-control m-2" placeholder="Node Port" id="node-port" value="26657">
|
|
</div>
|
|
<div class="input-group border-primary">
|
|
<input type="text" class="form-control m-2" placeholder="Binary Source" id="binary-url"
|
|
value="QmQ69JoPDaKFpPSbWvvUGRGG5E83u6nTP2hRegmCoa6aW5">
|
|
<input type="text" class="form-control m-2" placeholder="Name" id="node-name" value="name-service">
|
|
</div>
|
|
<button type="button" class="btn btn-outline-info m-3" id="start-check">Start Check</button>
|
|
<button type="button" class="btn btn-outline-secondary m-3" id="name-service-hlp">Name Service</button>
|
|
<button type="button" class="btn btn-outline-secondary m-3" id="commercio-hlp">Commercio.network</button>
|
|
</div>
|
|
|
|
<div class="m-3"><h3>Last Checked</h3>
|
|
<div class="border-primary container" id="zoneList">
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html>
|