29 lines
1.1 KiB
HTML
Raw Normal View History

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>
<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>