hbnet/scripts/dashboard/templates/header.html

18 lines
1003 B
HTML
Raw Normal View History

2021-01-02 18:00:08 -05:00
<p><img style="display: block; margin-left: auto; margin-right: auto;" src="{{logo}}" alt="Logo" width="300" height="144" /></p>
<h1 style="text-align: center;">{{title}}</h1>
<hr />
2021-01-02 18:45:35 -05:00
<table style="width: 500px; margin-left: auto; margin-right: auto;" border="black" cellspacing="3" cellpadding="3">
2021-01-02 18:00:08 -05:00
<tbody>
<tr>
<td style="text-align: center;"><button onclick="window.location.href='/';"> Dashboard Home </button></td>
2021-02-27 00:05:18 -05:00
<td style="text-align: center;"><button onclick="window.location.href='/map';"> Station Map </button></td>
2021-03-01 19:01:02 -05:00
<td style="text-align: center;"><button onclick="window.location.href='/mailbox';"> The Mailbox </button></td>
<td style="text-align: center;"><button onclick="window.location.href='/user';"> User Settings </button></td>
<td style="text-align: center;"><button onclick="window.location.href='/help';"> Dashboard Help </button></td>
2021-01-02 18:45:35 -05:00
<td style="text-align: center;"><button onclick="window.location.href='/about';"> Gateway Contact </button></td>
2021-01-02 18:00:08 -05:00
</tr>
</tbody>
</table>
<hr />