Register, Login, and Logout
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<br>
|
||||
<div>
|
||||
{{#if errors}}
|
||||
<ul>
|
||||
{{#each errors}}
|
||||
<li>{{this.message}}</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
{{/if}}
|
||||
|
||||
<div class="CenteredFocusHeader">
|
||||
<h4>Register</h4>
|
||||
</div>
|
||||
<div class="CenteredFocusContent">
|
||||
<form class="VerticalInputForm" action="/register" method="post">
|
||||
<input type="hidden" name="_csrf" value="{{csrfToken}}">
|
||||
<label for="register_username">Username</label>
|
||||
<input class="TextInput" name="register_username" type="text">
|
||||
<label for="register_password">Password</label>
|
||||
<input class="TextInput" name="register_password" type="password">
|
||||
<label for="register_confirm_password">Confirm Password</label>
|
||||
<input class="TextInput" name="register_confirm_password" type="password">
|
||||
<input type="submit" value="Register">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user