bliss/views/auth/login.eta

13 lines
326 B
Text
Raw Normal View History

2024-02-24 11:12:14 -05:00
<form action="/login" method="POST">
<input name="username" placeholder="username">
<input name="password" placeholder="password">
<button type="submit">
come home
</button>
<% if (error) { %>
<%= error %>
<% } %>
<br>
<div> or you can <a href="/register">move in here</a>.
</form>