pkmntrade.club/templates/account/login.html
2025-02-26 00:17:06 -08:00

13 lines
287 B
HTML

{% extends '_base.html' %}
{% load crispy_forms_tags %}
{% block title %}Log in{% endblock %}
{% block content %}
<h2>Log in</h2>
<form method="post">
{% csrf_token %}
{{ form|crispy }}
<button class="btn btn-success" type="submit">Log in</button>
</form>
{% endblock content %}