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