2021-06-21 18:46:10 +01:00
|
|
|
{{ template "header.tmpl" .}}
|
2021-09-13 13:45:33 +01:00
|
|
|
<main>
|
|
|
|
<section class="login">
|
|
|
|
<h1>Login</h1>
|
|
|
|
<form action="/auth/sign_in" method="POST">
|
|
|
|
<label for="email">Email</label>
|
|
|
|
<input type="text" class="form-control" name="username" required placeholder="Please enter your email address">
|
|
|
|
|
|
|
|
<label for="password">Password</label>
|
|
|
|
<input type="password" class="form-control" name="password" required placeholder="Please enter your password">
|
|
|
|
<button type="submit" class="btn btn-success">Login</button>
|
|
|
|
</form>
|
|
|
|
</section>
|
|
|
|
</main>
|
2021-06-21 18:46:10 +01:00
|
|
|
{{ template "footer.tmpl" .}}
|