blob: cfe932b3a2d9764c03b19dfbf311740adbd2b6cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{{ template "header.tmpl" .}}
<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>
{{ template "footer.tmpl" .}}
|