mirror of
https://github.com/elyby/accounts.git
synced 2024-12-02 11:41:05 +05:30
Добавлено окно для валидации TOTP токена на формах входа и восстановления пароля
This commit is contained in:
parent
0798faa7f1
commit
0eedfe91a2
@ -51,6 +51,7 @@ class ForgotPasswordForm extends ApiForm {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$validator = new TotpValidator(['account' => $account]);
|
$validator = new TotpValidator(['account' => $account]);
|
||||||
|
$validator->window = 1;
|
||||||
$validator->validateAttribute($this, $attribute);
|
$validator->validateAttribute($this, $attribute);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -69,6 +69,7 @@ class LoginForm extends ApiForm {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$validator = new TotpValidator(['account' => $account]);
|
$validator = new TotpValidator(['account' => $account]);
|
||||||
|
$validator->window = 1;
|
||||||
$validator->validateAttribute($this, $attribute);
|
$validator->validateAttribute($this, $attribute);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user