diff options
author | Thomas <> | 2022-05-02 17:16:15 +0200 |
---|---|---|
committer | Thomas <> | 2022-05-02 17:16:15 +0200 |
commit | 69aa81016fe20e901a3be02bb6772c9185c0b9ef (patch) | |
tree | 94e86b91ed349c08524de0bb8669beffcf66eddb /basicConfig/templates/residency.html | |
parent | d9a402c18755d47ad17283c5c52fc2311df56e85 (diff) | |
download | National_eIDAS_Gateway-69aa81016fe20e901a3be02bb6772c9185c0b9ef.tar.gz National_eIDAS_Gateway-69aa81016fe20e901a3be02bb6772c9185c0b9ef.tar.bz2 National_eIDAS_Gateway-69aa81016fe20e901a3be02bb6772c9185c0b9ef.zip |
chore(matching): re-oreder process steps in GUI releated matching
Diffstat (limited to 'basicConfig/templates/residency.html')
-rw-r--r-- | basicConfig/templates/residency.html | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/basicConfig/templates/residency.html b/basicConfig/templates/residency.html index f8516945..26812ec0 100644 --- a/basicConfig/templates/residency.html +++ b/basicConfig/templates/residency.html @@ -173,7 +173,22 @@ <h2 th:text="#{gui.countryselection.header3}"> Betrieben durch das Bundesministerium für Inneres </h2> </div> - <h1 th:text="#{gui.residency.header.selection}">Search your Austrian Residency</h1> + <div class="mainDescription"> + <h3 th:text="#{gui.residency.header.selection}">Search your Austrian Residency </h3> + + <p th:text="#{gui.residency.info.first}"> Info text for matching by address </p> + <p th:text="#{gui.residency.info.second}"> HowTo search by address </p> + </div> + + <div id="matchingError" + th:if="${advancedMatchingFailed != null} and ${advancedMatchingFailed}"> + <p th:if="${advancedMatchingFailedReason != null}" + th:text="#{${advancedMatchingFailedReason}}">Detailed + </p> + <p th:unless="${advancedMatchingFailedReason != null}" + th:text="#{module.eidasauth.matching.29}">Generell + </p> + </div> <div id="residency"> <form id="inputForm" method="post" action="$contextPath$submitEndpoint" @@ -217,18 +232,22 @@ </form> </div> + <div id="backOrReturn" class="block"> - <form method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> + + <p th:text="#{gui.residency.info.third}"> Alternativ infos and back </p> + <br> + <form class="block" method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> <button type="submit" value="Back" th:text="#{gui.residency.back}">Back</button> <input type="hidden" name="noResidence" value="true"> <input type="hidden" name="pendingid" value="$pendingid" th:attr="value=${pendingid}"> </form> - <form method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> + <!--form class="block" method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> <button type="submit" value="Abbrechen/Cancel" th:text="#{gui.residency.cancel}">Cancel</button> <input type="hidden" name="stopAuthProcess" value="true"> <input type="hidden" name="pendingid" value="$pendingid" th:attr="value=${pendingid}"> - </form> + </form--> </div> |