generated from cfpb/open-source-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
content(Complete User Profile): Updated the language, commented out b…
…utton (#598) closes #597 ## Note ### Tasks - Complete your user profile (associated financial institutions) - [x] Update small text in introduction to include link to email support staff and new URL for GLEIF. It would be best to swap in the whole block. ### Tasks - Complete your user profile (no associated financial institutions) - [x] Update small text in introduction to include link to email support staff and new URL for GLEIF. It would be best to swap in the whole block. - [x] Update body text under "Provide your financial institution details" to reference emailing support staff instead of "Add an additional financial institution" button/link. - [x] Change name of link/button to "Add an additional financial institution" - [x] Comment out "Add an additional financial institution" button/link - [x] For error alert links, remove numbering from "financial institution name" and "LEI" because there will only be one for MVP. You can comment out the numbering in code so that we can bring it back when we reveal the button/link post-MVP. - [x] Update text on error alert for "Your email domain" is not authorized (pre-clearance change). - [x] Add a breadcrumb to the warning alert notification screen that takes a user back to "Platform home" (un-authenticated). ## Notable Changes - content(Complete User Profile): Updated the language, commented out button - feat(complete user profile): toggle showing key index per error -- currently disabled - enhancement(Summary): breadcrumb is **standard** for all summaries -- if authenticated, routes to `/landing` otherwise `/` ## How to Test - Compare with the figma - Go through the two task lists above and verify each are correct; especially, last task. ## Screenshot - Normal <img width="410" alt="Screenshot 2024-05-29 at 12 28 38 PM" src="https://github.com/cfpb/sbl-frontend/assets/13324863/0d290e0d-d8bf-4bc1-8fa9-74b7ce4cb1ad"> ## Screenshot - With Errors <img width="275" alt="Screenshot 2024-05-29 at 12 28 47 PM" src="https://github.com/cfpb/sbl-frontend/assets/13324863/4f8cc1c9-d034-44fc-afae-a1a26fe18ba0"> ## Screenshot - Error Summary with breadcrumb <img width="793" alt="Screenshot 2024-05-29 at 6 13 26 PM" src="https://github.com/cfpb/sbl-frontend/assets/13324863/6f1e8e09-af5e-46a4-b7f5-c0e778943557"> ## Screenshot - Warning Summary with breadcrumb <img width="778" alt="Screenshot 2024-05-29 at 6 28 03 PM" src="https://github.com/cfpb/sbl-frontend/assets/13324863/f948593f-4b7f-42c5-b2f4-b2232f82811d"> ## References #578
- Loading branch information
1 parent
7605eab
commit ff3eed6
Showing
6 changed files
with
67 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,11 +22,22 @@ function Step1FormHeader({ isStep1 }: Step1FormHeaderProperties): JSX.Element { | |
} | ||
description={ | ||
<Paragraph> | ||
In order to begin using the platform you must have a Legal Entity | ||
Identifier (LEI) for your financial institution. If your | ||
organization does not have an LEI, visit the{' '} | ||
<Link href={gleifGetAnLEI}>Global LEI Foundation (GLEIF)</Link>{' '} | ||
website. | ||
<> | ||
In order to begin using the platform you must have a Legal Entity | ||
Identifier (LEI) for your financial institution. If your | ||
organization does not have an LEI, visit the{' '} | ||
<Link href={gleifGetAnLEI} target='_blank'> | ||
Global LEI Foundation (GLEIF) | ||
</Link>{' '} | ||
website. If you need assistance with this form,{' '} | ||
<Link | ||
href='mailto:[email protected]?subject=[BETA] Complete your user profile: Questions after submitting form' | ||
target='_blank' | ||
> | ||
email our support staff | ||
</Link> | ||
. | ||
</> | ||
</Paragraph> | ||
} | ||
/> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,7 +99,15 @@ function ChildrenError1(): JSX.Element { | |
<Link className={linkStyles} href='/'> | ||
return to the platform homepage | ||
</Link> | ||
, and sign in with your financial institution email address. | ||
, and sign in with your financial institution email address. If this issue | ||
persists,{' '} | ||
<Link | ||
className={linkStyles} | ||
href='mailto:[email protected]?subject=[BETA] Complete your user profile: Questions after submitting form' | ||
> | ||
email our support staff | ||
</Link> | ||
. | ||
</> | ||
); | ||
} | ||
|
@@ -126,7 +134,7 @@ function ChildrenSuccessInstitutionProfileUpdate(): JSX.Element { | |
return ( | ||
<> | ||
Please allow 24-48 hours for a response during normal business hours. If | ||
you need further assistance please{' '} | ||
you need further assistance{' '} | ||
<Link | ||
className={linkStyles} | ||
href='mailto:[email protected]?subject=[BETA] Update your financial institution profile: Questions after submitting form' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters