19 lines
559 B
HTML
19 lines
559 B
HTML
{{define "title"}}login — paste.ridgwaysystems.org{{end}}
|
|
|
|
{{define "content"}}
|
|
<div class="admin-login-wrap">
|
|
<h1>admin login</h1>
|
|
|
|
{{if .Error}}
|
|
<div class="form-error">{{.Error}}</div>
|
|
{{end}}
|
|
|
|
<form method="POST" action="/admin/login" class="login-form">
|
|
<input type="hidden" name="csrf_token" value="{{.CSRFToken}}">
|
|
<label for="password">password</label>
|
|
<input type="password" id="password" name="password" autofocus autocomplete="current-password">
|
|
<button type="submit" class="btn">login</button>
|
|
</form>
|
|
</div>
|
|
{{end}}
|