Register, Login, and Logout

This commit is contained in:
2026-05-13 19:27:59 -04:00
parent f591bdffb5
commit 86f94b7bf3
23 changed files with 737 additions and 25 deletions
+24
View File
@@ -0,0 +1,24 @@
<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>