This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
quizzy-application/drill-and-practice/views/login.eta
2023-03-09 13:37:03 +02:00

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>