24 lines
757 B
Handlebars
24 lines
757 B
Handlebars
|
|
<br>
|
||
|
|
<div>
|
||
|
|
{{#if errors}}
|
||
|
|
<ul>
|
||
|
|
{{#each errors}}
|
||
|
|
<li>{{this.message}}</li>
|
||
|
|
{{/each}}
|
||
|
|
</ul>
|
||
|
|
{{/if}}
|
||
|
|
|
||
|
|
<div class="CenteredFocusHeader">
|
||
|
|
<h4>Login</h4>
|
||
|
|
</div>
|
||
|
|
<div class="CenteredFocusContent">
|
||
|
|
<form class="VerticalInputForm" action="/login" method="post">
|
||
|
|
<input type="hidden" name="_csrf" value="{{csrfToken}}">
|
||
|
|
<label for="login_username">Username</label>
|
||
|
|
<input class="TextInput" name="login_username" type="text">
|
||
|
|
<label for="login_password">Password</label>
|
||
|
|
<input class="TextInput" name="login_password" type="password">
|
||
|
|
<input type="submit" value="Login">
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</div>
|