From c4cbfaf66f85e7803f5d41c126faf01a70c28739 Mon Sep 17 00:00:00 2001 From: ifdjhxh Date: Sat, 9 Nov 2024 15:20:40 +0300 Subject: [PATCH] add login form --- main/_front/src/html/login.html | 79 +++++++++++++++++++++++++++++++++ main/_front/src/scss/_form.scss | 26 +++++++++++ 2 files changed, 105 insertions(+) create mode 100644 main/_front/src/html/login.html create mode 100644 main/_front/src/scss/_form.scss diff --git a/main/_front/src/html/login.html b/main/_front/src/html/login.html new file mode 100644 index 0000000..4ec9be9 --- /dev/null +++ b/main/_front/src/html/login.html @@ -0,0 +1,79 @@ + + + + + + + Document + + + + +
+ +
+
+
+

Вход в панель администратора

+
+
+
+
+

Вход

+
+ + Почта +
+
+ + Пароль +
+ +
+
+ + \ No newline at end of file diff --git a/main/_front/src/scss/_form.scss b/main/_front/src/scss/_form.scss new file mode 100644 index 0000000..9c8f124 --- /dev/null +++ b/main/_front/src/scss/_form.scss @@ -0,0 +1,26 @@ +.form { + width: 100%; + height: calc(100vh - 2*163px); + display: flex; + justify-content: center; + align-items: center; +} + +.form__inner { + width: 400px; + padding: 20px; + display: flex; + flex-direction: column; + align-items: center; + row-gap: 20px; +} + +.form__title { + font-size: 24px; + line-height: 28px; + font-weight: 700; +} + +.form__input { + width: 100%; +} \ No newline at end of file