1
0
Fork 0
bookwyrm/fedireads/templates/login.html

14 lines
307 B
HTML
Raw Normal View History

2020-01-25 15:25:19 -08:00
{% extends 'layout.html' %}
{% block content %}
2020-01-28 17:23:38 -08:00
<div id="content">
<div>
<form name="login" method="post">
2020-01-28 23:23:05 -08:00
{{ login_form.as_p }}
2020-01-28 17:23:38 -08:00
<button type="submit">Log in</button>
</form>
2020-01-28 19:05:59 -08:00
<a href="/register/">Create a new account</a>
2020-01-28 17:23:38 -08:00
</div>
2020-01-28 19:05:59 -08:00
2020-01-28 17:23:38 -08:00
</div>
2020-01-25 15:25:19 -08:00
{% endblock %}