Skip to content

Commit

Permalink
User Sign Up fixes
Browse files Browse the repository at this point in the history
Update capitalization and font size in user sign up form.
  • Loading branch information
mflymfly committed Feb 20, 2025
1 parent 4528e64 commit dab1e1e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
8 changes: 7 additions & 1 deletion frontend/src/components/SignUpFormModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -332,11 +332,17 @@ export const SignUpFormModal = () => {
href="https://www.nj.gov/nj/privacy.html"
target="_blank"
rel="noopener noreferrer"
style={{ fontSize: "16px" }}
>
{t("SignUpFormModal.privacyPolicy")}
</a>{" "}
{t("SignUpFormModal.andOur")}{" "}
<a href="/sms-use-policy" target="_blank" rel="noopener noreferrer">
<a
href="/sms-use-policy"
target="_blank"
rel="noopener noreferrer"
style={{ fontSize: "16px" }}
>
{t("SignUpFormModal.smsUsePolicy")}
</a>
.
Expand Down
10 changes: 6 additions & 4 deletions frontend/src/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -489,20 +489,22 @@ The New Jersey Department of Labor and Workforce Development reserves the right
SignUpFormModal: {
buttonText: "Sign Up for Updates",
formTitle: "My Career NJ User Sign Up Form",
formDescription: "Sign-up to stay up to date on the latest new features, news, and resources from My Career NJ.",
formDescription:
"Sign up to stay up to date on the latest new features, news, and resources from My Career NJ.",
firstNameLabel: "First Name",
firstNameError: "First name must be 2 or more characters.",
lastNameLabel: "Last Name",
lastNameError: "Last name must be 2 or more characters.",
emailLabel: "Email",
emailRequired: "Email is required.",
emailError: "Please enter a valid email address.",
phoneLabel: "Mobile phone number",
phoneLabel: "Mobile Phone Number",
usPhoneOnlyLabel: "US phone numbers only",
phoneError: "Please enter a valid phone number",
submitButton: "Submit form",
successMessage: "You've successfully subscribed to updates from My Career NJ.",
confirmationMessage: "A confirmation email should be in your inbox. If it's not there, please check your spam or junk folder.",
confirmationMessage:
"A confirmation email should be in your inbox. If it's not there, please check your spam or junk folder.",
errorMessage: "There was an error submitting the form. Please try again.",
serverErrorMessage: "There was an error connecting to the server. Please try again later.",
loadingMessage: "Submitting",
Expand All @@ -513,7 +515,7 @@ The New Jersey Department of Labor and Workforce Development reserves the right
resetForm: "Reset form",
requiredFieldIndicator: {
part1: "A red asterisk ",
part2: " indicates a required field."
part2: " indicates a required field.",
},
readAboutOur: "Read about our",
privacyPolicy: "privacy policy",
Expand Down

0 comments on commit dab1e1e

Please sign in to comment.