You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
634 B
25 lines
634 B
{% extends 'base.html' %}
|
|
{% load static %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="col-lg-4 col-lg-offset-4 ">
|
|
<div class="reg">
|
|
<div class="row">
|
|
<div class="col-12 text-center">
|
|
<div class="content__title title__data">Вход</div>
|
|
</div>
|
|
<div class="col-12 text-center ">
|
|
<div class="reg title__data-mob mb-10">Вход</div>
|
|
</div>
|
|
|
|
</div>
|
|
{% crispy form %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock content %}
|
|
|