You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'password_shape_warning' => env('AUTH_PASSWORD_SHAPE_WARNING', 'Password must include at least one uppercase letter, one lowercase letter, one number, and one special character.'),
'password_shape_warning' => env('AUTH_PASSWORD_SHAPE_WARNING', 'Password must include at least one uppercase letter, one lowercase letter, one number, and one special character (#?!@$%^&*-+).'),
Copy file name to clipboardExpand all lines: resources/js/reset_password/reset_password.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -167,7 +167,7 @@ const ResetPasswordPage = ({
167
167
<InfoOutlinedIconfontSize="small"/>
168
168
169
169
<Typographyvariant="body2">
170
-
{`The Password must be ${passwordPolicy.min_length}–${passwordPolicy.max_length} characters, and ${passwordPolicy.shape_warning}`}
170
+
<divdangerouslySetInnerHTML={{__html: `The Password must be ${passwordPolicy.min_length}–${passwordPolicy.max_length} characters, and ${passwordPolicy.shape_warning}`}}/>
Copy file name to clipboardExpand all lines: resources/js/set_password/set_password.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -276,7 +276,7 @@ const SetPasswordPage = ({
276
276
<InfoOutlinedIconfontSize="small"/>
277
277
278
278
<Typographyvariant="body2">
279
-
{`The Password must be ${passwordPolicy.min_length}–${passwordPolicy.max_length} characters, and ${passwordPolicy.shape_warning}`}
279
+
<divdangerouslySetInnerHTML={{__html: `The Password must be ${passwordPolicy.min_length}–${passwordPolicy.max_length} characters, and ${passwordPolicy.shape_warning}`}}/>
Copy file name to clipboardExpand all lines: resources/js/signup/signup.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -270,7 +270,7 @@ const SignUpPage = ({
270
270
<InfoOutlinedIconfontSize="small"/>
271
271
272
272
<Typographyvariant="body2">
273
-
{`The Password must be ${passwordPolicy.min_length}–${passwordPolicy.max_length} characters, and ${passwordPolicy.shape_warning}`}
273
+
<divdangerouslySetInnerHTML={{__html: `The Password must be ${passwordPolicy.min_length}–${passwordPolicy.max_length} characters, and ${passwordPolicy.shape_warning}`}}/>
0 commit comments