| | |
| | | class: 'focus:border-primary', |
| | | placeholder: $t('authentication.usernameTip'), |
| | | }, |
| | | defaultValue: 'admin', |
| | | defaultValue: 'test', |
| | | fieldName: 'username', |
| | | label: $t('authentication.username'), |
| | | rules: z.string().min(1, { message: $t('authentication.usernameTip') }), |
| | |
| | | class: 'focus:border-primary', |
| | | placeholder: $t('authentication.password'), |
| | | }, |
| | | defaultValue: 'admin123', |
| | | defaultValue: '123456', |
| | | fieldName: 'password', |
| | | label: $t('authentication.password'), |
| | | rules: z.string().min(5, { message: $t('authentication.passwordTip') }), |