begin auth stuff

This commit is contained in:
2022-11-12 21:57:42 -05:00
parent 7169bb11c9
commit 7cb3aaf864
3 changed files with 45 additions and 0 deletions

29
templates/login.html Normal file
View File

@@ -0,0 +1,29 @@
{% extends "base.html" %}
{% block content %}
<div>
<h3>Login</h3>
<div>
<form method="POST" action="/login">
<div>
<div>
<input type="email" name="email" placeholder="Your Email" autofocus="">
</div>
</div>
<div>
<div>
<input type="password" name="password" placeholder="Your Password">
</div>
</div>
<div>
<label>
<input type="checkbox" name="remember">
Remember me
</label>
</div>
<button>Login</button>
</form>
</div>
</div>
{% endblock %}