Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
anonymous committed Feb 20, 2024
1 parent 3e2a369 commit 0ceb446
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/User/Register/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default () => {

return (
<div className={styles.container}>
<div className={styles.lang} data-lang>
<div className={styles.lang}>
{SelectLang && <SelectLang />}
</div>
<div className={styles.content}>
Expand All @@ -36,6 +36,7 @@ export default () => {
name="username"
fieldProps={{
size: 'large',
autoComplete: 'off',
prefix: <UserOutlined className={styles.prefixIcon} />,
}}
rules={requiredRules()}
Expand All @@ -45,6 +46,7 @@ export default () => {
name="password"
fieldProps={{
size: 'large',
autoComplete: 'new-password',
prefix: <LockOutlined className={styles.prefixIcon} />,
}}
rules={requiredRules()}
Expand Down

0 comments on commit 0ceb446

Please sign in to comment.