Add functional forgot-password flow and login modal UX updates

This commit is contained in:
2026-02-24 17:59:51 +01:00
parent 1c2353cfe1
commit 2a69ee8258
7 changed files with 161 additions and 2 deletions

View File

@@ -57,11 +57,11 @@ export default function Login() {
<Link to="/reset-password">{t('auth.forgot_password')}</Link>
</div>
</Form.Group>
<div className="d-flex gap-2">
<div className="d-flex w-100 align-items-center gap-2">
<Button as={Link} to="/" type="button" variant="outline-secondary" disabled={loading}>
{t('acp.cancel')}
</Button>
<Button type="submit" variant="dark" disabled={loading}>
<Button type="submit" className="ms-auto bb-accent-button" disabled={loading}>
{loading ? t('form.signing_in') : t('form.sign_in')}
</Button>
</div>