Skip to content

Commit

Permalink
rebase with main
Browse files Browse the repository at this point in the history
  • Loading branch information
lkemperman-cfa committed Oct 4, 2023
1 parent 8536bbd commit 6e97783
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 8 deletions.
12 changes: 11 additions & 1 deletion src/main/resources/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -493,4 +493,14 @@ citizenship.content=Only people in your household who want SNAP benefits need to
citizenship.why-provide=Why do I need to provide this information?
citizenship.l1=We might need to check this information with U.S. Citizenship and Immigration Services (USCIS) to make sure it's correct. The details from USCIS could impact if you can get SNAP and how much you receive.
citizenship.l2=We will <b>not</b> use your Social Security Information to cooperate with Immigration Customs Enforcement (ICE). Participating in SNAP will not count against you if you apply for a green card or citizenship.
citizenship.l3=Applying for or getting SNAP won't affect the immigration status of you or anyone in your home.
citizenship.l3=Applying for or getting SNAP won't affect the immigration status of you or anyone in your home.

# Review contact info
review-contact-info.title=Review contact information
review-contact-info.header=Let's review your info
review-contact-info.name=Name
review-contact-info.mailing-address=Mailing Address
review-contact-info.contact-information=Contact information
review-contact-info.this-looks-correct=This looks correct
review-contact-info.edit=Edit my info
review-contact-info.submit-incomplete=Submit an incomplete application now with only the above information.
Original file line number Diff line number Diff line change
@@ -1,10 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Review Contact Information</title>
</head>
<html th:lang="${#locale.language}" xmlns:th="http://www.thymeleaf.org">
<head th:replace="~{fragments/head :: head(title=#{review-contact-info.title})}"></head>
<body>

<div class="page-wrapper">
<div th:replace="~{fragments/toolbar :: toolbar}"></div>
<section class="slab">
<div class="grid">
<div th:replace="~{fragments/goBack :: goBackLink}"></div>
<main id="content" role="main" class="form-card spacing-above-35">
<th:block
th:replace="~{fragments/cardHeader :: cardHeader(header=#{review-contact-info.header})}"/>
<th:block th:replace="~{fragments/form :: form(action=${formAction}, content=~{::reviewContent})}">
<th:block th:ref="reviewContent">
<div class="form-card__content">
<b th:text="#{review-contact-info.name}"></b>
<div class="spacing-above-15">
<p th:text="${fieldData.firstName} + ' ' + ${fieldData.lastName}"></p>
</div>
<hr class="spacing-below-35 spacing-above-35">
<b th:text="#{review-contact-info.mailing-address}"></b>
<div class="spacing-above-15">
<p class="spacing-below-5" th:text="${fieldData.homeAddressStreetAddress1}"></p>
<p class="spacing-below-5" th:text="${fieldData.homeAddressStreetAddress2}"></p>
<p class="spacing-below-5" th:text="${fieldData.homeAddressCity} + ', ' + ${fieldData.homeAddressState}"></p>
<p th:text="${fieldData.homeAddressZipCode}"></p>
</div>
<hr class="spacing-below-35 spacing-above-35">
<b th:text="#{review-contact-info.contact-information}"></b>
<div class="spacing-above-15">
<p class="spacing-below-5" th:text="${fieldData.phoneNumber}"></p>
<p class="spacing-below-5" th:text="${fieldData.emailAddress}"></p>
</div>
<hr class="spacing-below-35 spacing-above-35">

</div>
<div class="form-card__footer">
<th:block th:replace="~{fragments/inputs/submitButton :: submitButton(
text=#{review-contact-info.this-looks-correct})}"/>
<button class="button button--secondary" th:text="#{review-contact-info.edit}" th:href="'/flow/' + ${flow} + '/contactInfo'"></button>
</div>
</th:block>
</th:block>
</main>
</div>
</section>
</div>
<th:block th:replace="~{fragments/footer :: footer}" />
</body>
</html>
</html>

0 comments on commit 6e97783

Please sign in to comment.