RandomSec/Serwer_django/templates/registration/login.html

13 lines
264 B
HTML
Raw Normal View History

2022-01-23 22:34:16 +01:00
<!-- templates/registration/login.html -->
{% 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 %}