Noah Petherbridge
c43d052665
* Vendor fontawesome icons * User settings page: to edit profile details (other features not hooked up yet) * Initial user profile page
27 lines
870 B
HTML
27 lines
870 B
HTML
{{define "title"}}Log In{{end}}
|
|
{{define "content"}}
|
|
<div class="container">
|
|
<section class="hero is-info is-bold">
|
|
<div class="hero-body">
|
|
<div class="container">
|
|
<h1 class="title">Sign in</h1>
|
|
<h2 class="subtitle">to your account</h2>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="block p-2">
|
|
<form action="/login" method="POST">
|
|
{{ InputCSRF }}
|
|
|
|
<label for="username">Username or email:</label>
|
|
<input type="text" class="input" name="username" placeholder="username" autocomplete="off">
|
|
|
|
<label for="password">Password:</label>
|
|
<input type="password" class="input" name="password" placeholder="password">
|
|
|
|
<button type="submit" class="button is-primary">Log in</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{{end}} |