Этот коммит содержится в:
2022-11-29 19:50:02 +05:30
родитель c11d4f2aa4
Коммит 62220212ed
3 изменённых файлов: 12 добавлений и 6 удалений
+6 -1
Просмотреть файл
@@ -109,6 +109,10 @@ body {
color: #1a73e8;
}
.biz-login-wrap .form-group input.error:focus+label {
color: #d93025;
}
.biz-login-wrap .password-fixed {
transform: translate3d(0, -175%, 0);
z-index: 1 !important;
@@ -197,9 +201,10 @@ body {
font-weight: 500;
}
.biz-login-wrap .err-msg {
.biz-login-wrap .err-msg:not(:empty) {
color: #d93025;
font-size: 12px;
margin-top: 5px;
}
.biz-login-wrap h4 {
+2 -1
Просмотреть файл
@@ -76,7 +76,8 @@ function loginUser(email, password) {
.then((response) => response.text())
.then((result) => {
const user = JSON.parse(result);
setCookie('authentication', JSON.stringify(user.sessionId), 1);
setCookie('authentication', user.result.sessionId, 1);
window.location = '../authentication';
})
.catch((error) => console.log('error', error));
}