18 lines
378 B
Plaintext
18 lines
378 B
Plaintext
<% layout("./layouts/layout.eta") %>
|
|
|
|
<h1>Login</h1>
|
|
|
|
<form method="POST" action="/auth/login">
|
|
Email:<br/>
|
|
<input type="email" name="email" /><br/>
|
|
Password:<br/>
|
|
<input type="password" name="password" /><br/>
|
|
<input type="submit" value="Login" />
|
|
</form>
|
|
|
|
<% if(it.error){ %>
|
|
<b><%= it.error %></b>
|
|
<br/>
|
|
<% } %>
|
|
|
|
<a href="/auth/register">Are you a new user?</a> |