diff --git a/static/css/._style.css b/static/css/._style.css
deleted file mode 100644
index bbe2027..0000000
Binary files a/static/css/._style.css and /dev/null differ
diff --git a/templates/cart.html b/templates/cart.html
deleted file mode 100644
index 46b9190..0000000
--- a/templates/cart.html
+++ /dev/null
@@ -1,30 +0,0 @@
-{% extends 'base.html' %}
-{% block title %} Корзина {% endblock %}
-
-{% block styles %}
- {% load static %}
-
-{% endblock %}
-
-{% block content %}
-
Ваша корзина
- {% if user %}
- {% if cart_objects %}
- {% for ojb in cart_objects %}
-{# 'item_count', 'prod', 'prod__prod_name', 'prod__prod_price', 'prod__prod_available', 'prod__prod_photo', 'prod__category__cat_name' #}
-
-
-
-
{{ ojb.0 }}шт
-
{{ ojb.2 }} ₽
-
{{ ojb.3 }} доступно
-
-
- {% endfor %}
- {% else %}
- Корзина пуста!
- {% endif %}
- {% else %}
- нужно войти...
- {% endif %}
-{% endblock %}
diff --git a/templates/catalog.html b/templates/catalog.html
deleted file mode 100644
index ad25db5..0000000
--- a/templates/catalog.html
+++ /dev/null
@@ -1,45 +0,0 @@
-{% extends 'base.html' %}
-{% block title %} Каталог {% endblock %}
-
-{% block styles %}
- {% load static %}
-
-{% endblock %}
-
-{% block content %}
-
- Каталог
- {% if cat_name %}
- / {{ cat_name }}
- {% endif %}
-
-
-
- {% if products %}
-
- {% else %}
-
-
Упс, тут нет доступных товаров...
-
- {% endif %}
-
-
-{% endblock %}
diff --git a/templates/product-view.html b/templates/product-view.html
deleted file mode 100644
index 8ebb46a..0000000
--- a/templates/product-view.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{% extends 'base.html' %}
-{% block title %} Каталог {% endblock %}
-
-{% block styles %}
- {% load static %}
-
-{% endblock %}
-
-{% block content %}
- {{ product.prod_name }}
- {% if product %}
-
-
-

-
-
-
Цена: {{ product.prod_price }}
-
{{ product.prod_description }}
-
-
- {% else %}
-
-
Упс, товар не найден...
-
- {% endif %}
-{% endblock %}
diff --git a/templates/registration/register.html b/templates/registration/register.html
new file mode 100644
index 0000000..a7c06f9
--- /dev/null
+++ b/templates/registration/register.html
@@ -0,0 +1,20 @@
+{% extends 'base.html' %}
+{% block title %} Аккаунт | регистрация {% endblock %}
+
+{% block content %}
+
+ Регистрация
+
+
+
+ Уже зарегистрированы?
Вход
+
+{% endblock %}