cwr/web/templates/registration/login.html
2025-10-23 09:37:46 -04:00

11 lines
210 B
HTML

<!DOCTYPE html>
{% extends "base.html" %}
{% block content %}
<h2>Login</h2>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Log In" />
</form>
{% endblock %}