14 lines
281 B
HTML
14 lines
281 B
HTML
{{ template "header" . }}
|
|
|
|
<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 }}
|
|
|
|
</body>
|
|
</html>
|