Skip to content

Commit

Permalink
added rememberMe option to signup (#1807)
Browse files Browse the repository at this point in the history
* added rememberMe option to signup

* updated rememberMe
  • Loading branch information
blakeganderson authored Nov 27, 2023
1 parent 14a1b74 commit 61fea5c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions blocks/identity-block/features/signup/default.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ const SignUp = ({ customFields, arcSite }) => {
},
{
email,
}
},
undefined,
true,
)
.then(() => {
window.location = redirectURL;
Expand Down Expand Up @@ -143,7 +145,7 @@ const SignUp = ({ customFields, arcSite }) => {
pwMinLength,
pwPwNumbers,
pwSpecialCharacters,
pwUppercase
pwUppercase,
)}
confirmLabel={phrases.t("identity-block.confirm-password")}
confirmValidationErrorMessage={phrases.t("identity-block.confirm-password-error")}
Expand Down

0 comments on commit 61fea5c

Please sign in to comment.