tpotce/collector/CollectorWEB/templates/registration/login.html

12 lines
221 B
HTML
Raw Normal View History

2024-06-05 07:52:53 +00:00
{% extends 'base.html' %}
{% block title %}Login{% endblock %}
{% block content %}
<h2>Log In</h2>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Log In</button>
</form>
{% endblock %}