- Use bootstrap to improve layout. - Add warning banners for webserver debug mode and vspd closed. Admin page: - Replace listing of all tickets with form to search by ticket hash
16 lines
359 B
HTML
16 lines
359 B
HTML
{{ template "header" . }}
|
|
|
|
<section>
|
|
<h3>Login</h3>
|
|
<form action="/admin" method="post">
|
|
<input type="password" name="password" required placeholder="Enter password">
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
|
|
{{ if .IncorrectPassword }}
|
|
<p>Incorrect password</p>
|
|
{{ end }}
|
|
</section>
|
|
|
|
{{ template "footer" . }}
|