hbnet/scripts/dashboard/templates/index.html

32 lines
768 B
HTML
Raw Normal View History

2020-12-30 12:10:23 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="120" >
<title>{{title}}</title>
<style>
body {background-color: D3D3D3;}
h1 {color: green;}
p {
padding: 10px;
margin: 20px;
}
</style>
</head>
<body>
2021-01-02 17:58:38 -05:00
{% include 'header.html' %}
2021-01-01 12:58:13 -05:00
<p style="text-align: center;"><em>Page automatically reloads every 2 minutes.</em></p>
<table>
<tbody>
<tr>
2021-01-01 17:09:14 -05:00
<td><div><p align="center"><iframe style="border: none;" title="Bulletin Board" src="bulletin_board" width="480" height="950"></iframe></p></div></td>
2021-01-01 12:58:13 -05:00
<td><div>
2021-01-01 17:09:14 -05:00
<p align="center"><iframe style="border: none;" title="Positions Received" src="positions" width="620" height="950"></iframe></p>
2021-01-01 12:58:13 -05:00
</div></td>
</tr>
</tbody>
</table>
2021-01-02 17:58:38 -05:00
{% include 'header.html' %}