add login page

This commit is contained in:
Alejandro Diaz 2023-09-11 01:59:25 -06:00
parent c4f9788d37
commit 8110371a94
7 changed files with 44 additions and 15 deletions

View file

@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block title %} Home Manager {% endblock title%}
{% block content %}
<div class="jumbotron">
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Log In</button>
</form>
</div>
{% endblock content %}