From 51e0019fd67aaee4cd549c48ab14e53b497d10ad Mon Sep 17 00:00:00 2001 From: Vladislav Date: Sat, 29 Mar 2025 23:29:34 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B2=D1=81=D0=B5=20=D0=B2=20=D0=BC=D0=B0?= =?UTF-8?q?=D1=81=D1=82=D0=B5=D1=80=20=D1=82=D0=B0=D1=89=D0=B8=D0=BC,=20?= =?UTF-8?q?=D1=80=D0=B5=D1=88=D0=B0=D1=82=D1=8C=20=D0=BD=D0=B0=D0=B4=D0=BE?= =?UTF-8?q?=20=D0=B8=D0=BB=D0=B8=20=D0=BD=D0=B5=D1=82=20=D0=BF=D0=BE=D1=82?= =?UTF-8?q?=D0=BE=D0=BC=20=D0=B1=D1=83=D0=B4=D0=B5=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/index.html | 36 ------------------------ frontend/styles.css | 68 --------------------------------------------- 2 files changed, 104 deletions(-) delete mode 100644 frontend/index.html delete mode 100644 frontend/styles.css diff --git a/frontend/index.html b/frontend/index.html deleted file mode 100644 index 5744255..0000000 --- a/frontend/index.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - Login and Register Form - - - -
-

Login Form

-
-
-

- -
-

- - -
-
- -
-

Register Form

-
-
-

- -
-

- - -
-
- - \ No newline at end of file diff --git a/frontend/styles.css b/frontend/styles.css deleted file mode 100644 index cb4948e..0000000 --- a/frontend/styles.css +++ /dev/null @@ -1,68 +0,0 @@ -/* Общие стили */ -body { - font-family: Arial, sans-serif; - background-color: #f4f4f4; - margin: 0; - padding: 20px; - display: flex; - flex-direction: column; /* Располагаем контейнеры вертикально */ - justify-content: center; - align-items: center; - min-height: 100vh; -} - - -/* Контейнер для форм */ -.form-container { /* Изменили селектор на класс .form-container */ - width: 100%; - max-width: 400px; - padding: 20px; - background-color: #fff; - border-radius: 8px; - box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); - margin-bottom: 20px; -} - - -/* Заголовки */ -h1 { - text-align: center; - color: #333; - margin-bottom: 20px; -} - -/* Метки (labels) */ -label { - display: block; - margin-bottom: 5px; - font-weight: bold; - color: #555; -} - -/* Поля ввода (input) */ -input[type="text"], -input[type="password"] { - width: 100%; - padding: 10px; - margin-bottom: 20px; - border: 1px solid #ccc; - border-radius: 4px; - box-sizing: border-box; -} - -/* Кнопки */ -button { - background-color: #4CAF50; - color: white; - padding: 12px 20px; - border: none; - border-radius: 4px; - cursor: pointer; - width: 100%; - font-size: 16px; - transition: background-color 0.3s ease; -} - -button:hover { - background-color: #45a049; -}