You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
574 B
18 lines
574 B
{% extends 'base.html' %} |
|
{% load crispy_forms_tags %} |
|
{% block title %}Login{% endblock %} |
|
{% block body_content %} |
|
|
|
<div class="row justify-content-md-center"> |
|
<div class="col-lg-6"> |
|
<h1 class="my-3 text-center">Login</h1> |
|
<form method="post"> |
|
{% csrf_token %} {{ form|crispy }} |
|
<button class="btn btn-primary btn-block" type="submit">Login</button> |
|
</form> |
|
<div class="mt-4 mb-2"> |
|
Don't have an account? Sign up <a href="{% url 'signup' %}">here</a>. |
|
</div> |
|
</div> |
|
</div> |
|
{% endblock %} |