mirror of
https://github.com/fluencelabs/cosmos-hackathon-frontend
synced 2025-05-03 17:42:15 +00:00
29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Init</title>
|
||
|
<script src="bundle.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<section class="container">
|
||
|
<div class="input-group border-primary mb-5">
|
||
|
<input type="text" class="form-control" placeholder="Node IP">
|
||
|
<input type="text" class="form-control" placeholder="Binary Source">
|
||
|
<button type="button" class="btn btn-outline-secondary">Start Check</button>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
Last Checked
|
||
|
<div class="border-primary">
|
||
|
<div class="progress" style="height:60px">
|
||
|
<div class="progress-bar bg-white" role="progressbar" style="width: 25%; background-color: white;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
|
||
|
</div>
|
||
|
<div class="progress" style="height:60px">
|
||
|
<div class="progress-bar" role="progressbar" style="width: 100%; height: 100px" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
</body>
|
||
|
</html>
|