13 lines
269 B
HTML
13 lines
269 B
HTML
<!-- templates/accounts/login.html -->
|
|
{% extends 'books/base.html' %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<h2>Вход</h2>
|
|
<form method="post" action="">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">Войти</button>
|
|
</form>
|
|
{% endblock %}
|