13 lines
373 B
HTML
13 lines
373 B
HTML
{{ if eq .Error "wrong_password" }}
|
|
<article style="background-color: #dd867f;color: #481212;padding: 1em;">
|
|
Wrong Password
|
|
</article>
|
|
{{ end }}
|
|
|
|
|
|
<form action="" method="post">
|
|
<h2>Login to Editor</h2>
|
|
<input type="hidden" name="csrf_token" value="{{.CsrfToken}}">
|
|
<input type="password" name="password" />
|
|
<input type="submit" value="Login" />
|
|
</form> |