Skip to content

Commit

Permalink
Update checkReCertificationStatus.html to show required in header
Browse files Browse the repository at this point in the history
  • Loading branch information
spokenbird committed Jun 12, 2024
1 parent d55f21f commit 0370cc5
Showing 1 changed file with 21 additions and 41 deletions.
Original file line number Diff line number Diff line change
@@ -1,44 +1,24 @@
<!DOCTYPE html>
<html th:lang="${#locale.language}">
<head th:replace="~{fragments/head :: head(title=#{recertification-check.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/icons :: documentAndEnvelope}"></th:block>
<th:block
th:replace="~{fragments/cardHeader :: cardHeader(
header=#{recertification-check.header},
subtext=#{recertification-check.subtext}
)}"/>
<th:block
th:replace="~{fragments/form :: form(action=${formAction}, content=~{::formContent})}">
<th:block th:ref="formContent">
<div class="form-card__content">
<th:block th:replace="~{fragments/inputs/radioFieldset ::
<th:block
th:replace="~{fragments/screens/screenWithOneInput ::
screenWithOneInput(
title=#{recertification-check.title},
iconFragment=~{fragments/icons :: documentAndEnvelope},
header=#{recertification-check.header},
subtext=#{recertification-check.subtext},
inputName='needsToReCertify',
formAction=${formAction},
inputContent=~{::inputContent})}">
<th:block th:ref="inputContent">
<th:block th:replace="~{fragments/inputs/radioFieldset ::
radioFieldset(inputName='needsToReCertify',
ariaLabel='header',
content=~{::recertOptions})}">
<th:block th:ref="recertOptions">
<th:block
th:replace="~{fragments/inputs/radio :: radio(inputName='needsToReCertify',value='false', label=#{recertification-check.choice-new-app})}"/>
<th:block
th:replace="~{fragments/inputs/radio :: radio(inputName='needsToReCertify',value='true', label=#{recertification-check.choice-re-cert})}"/>
</th:block>
</th:block>
</div>
<div class="form-card__footer">
<th:block th:replace="~{fragments/inputs/submitButton :: submitButton(
text=#{general.inputs.continue})}"/>
</div>
</th:block>
</th:block>
</main>
</div>
</section>
</div>
<th:block th:replace="~{fragments/footer :: footer}"/>
</body>
<th:block th:ref="recertOptions">
<th:block
th:replace="~{fragments/inputs/radio :: radio(inputName='needsToReCertify',value='false', label=#{recertification-check.choice-new-app})}"/>
<th:block
th:replace="~{fragments/inputs/radio :: radio(inputName='needsToReCertify',value='true', label=#{recertification-check.choice-re-cert})}"/>
</th:block>
</th:block>
</th:block>
</th:block>

0 comments on commit 0370cc5

Please sign in to comment.