Skip to content

Commit

Permalink
fix: #67
Browse files Browse the repository at this point in the history
  • Loading branch information
d3george committed Jun 18, 2024
1 parent 014d15b commit 154f6e9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/pages/sys/login/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,12 @@ function LoginForm() {
</Form.Item>
</Col>
<Col span={12} className="text-right">
<button className="!underline">{t('sys.login.forgetPassword')}</button>
<button
className="!underline"
onClick={() => setLoginState(LoginStateEnum.RESET_PASSWORD)}
>
{t('sys.login.forgetPassword')}
</button>
</Col>
</Row>
</Form.Item>
Expand Down

0 comments on commit 154f6e9

Please sign in to comment.