11 lines
298 B
HTML
11 lines
298 B
HTML
{% 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 %} |