47 lines
1 KiB
HTML
47 lines
1 KiB
HTML
<html>
|
|
<head>
|
|
<link href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" rel="stylesheet">
|
|
<script
|
|
type="text/javascript"
|
|
src="{{ url_for('static', filename = 'hello.js') }}"
|
|
></script>
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ url_for('static', filename = 'index.css') }}"
|
|
/>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div id="current_run" class="card">
|
|
<div class="item">
|
|
<div>
|
|
1
|
|
</div>
|
|
<div>
|
|
<button type="button">Start</button>
|
|
</div>
|
|
<div>
|
|
<i class="fas fa-question" style="color:grey"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card">
|
|
<div class="item">
|
|
<div>
|
|
1
|
|
</div>
|
|
<div>
|
|
total time
|
|
</div>
|
|
<div>
|
|
max fase
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card">
|
|
<div class="item">live requests</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|