[WIP] Заменил инпуты с датой на baseInput, исправил стили, фикс станицы логина
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
.text-under.flex.not-italic.font-medium.text-base(
|
||||
:style="{color: this.underTextColor}"
|
||||
) Войдите в аккаунт, чтобы начать пользоваться сервисом «Астра».
|
||||
.flex.flex-col.gap-y-2
|
||||
.flex.flex-col.gap-y-5
|
||||
base-input.font-medium(
|
||||
:rule="[wrongData => !!wrongData]",
|
||||
v-model="user.username",
|
||||
@@ -21,16 +21,15 @@
|
||||
v-model="user.password",
|
||||
:type="changeType",
|
||||
placeholder="Введите ваш пароль",
|
||||
label="Пароль",
|
||||
withIcon
|
||||
label="Пароль"
|
||||
)
|
||||
.flex.items-center.cursor-pointer
|
||||
q-icon(
|
||||
v-if="!wrongData && user.password"
|
||||
:name="isView ? 'visibility_off' : 'visibility'",
|
||||
:name="!isView ? 'visibility_off' : 'visibility'",
|
||||
@click="changeView"
|
||||
)
|
||||
span.font-medium(:style="{color: this.redColor}", v-show="wrongData") Неверный логин или пароль
|
||||
span.font-medium(:style="{color: this.redColor}", v-if="wrongData") Неверный логин или пароль
|
||||
.flex.items-center.gap-x-11px
|
||||
input.w-4.h-4.checkbox.cursor-pointer(@click="persist", type="checkbox")
|
||||
.flex.non-italic.font-medium.base Запомнить меня
|
||||
|
||||
Reference in New Issue
Block a user