diff options
author | Thomas <> | 2022-03-11 09:00:53 +0100 |
---|---|---|
committer | Thomas <> | 2022-03-11 09:00:53 +0100 |
commit | eb301932e03e01ff61990ba578fd55996052eab4 (patch) | |
tree | 071c6b0b8d44159ed542cb4c8c39096443318fe1 /basicConfig/templates/other_login_method.html | |
parent | d5c3de94f6f24b915e20810f0abd4d99e7836dcd (diff) | |
download | National_eIDAS_Gateway-eb301932e03e01ff61990ba578fd55996052eab4.tar.gz National_eIDAS_Gateway-eb301932e03e01ff61990ba578fd55996052eab4.tar.bz2 National_eIDAS_Gateway-eb301932e03e01ff61990ba578fd55996052eab4.zip |
chore(UX): a few small GUI improvements
Diffstat (limited to 'basicConfig/templates/other_login_method.html')
-rw-r--r-- | basicConfig/templates/other_login_method.html | 53 |
1 files changed, 26 insertions, 27 deletions
diff --git a/basicConfig/templates/other_login_method.html b/basicConfig/templates/other_login_method.html index 9dd00379..2165add2 100644 --- a/basicConfig/templates/other_login_method.html +++ b/basicConfig/templates/other_login_method.html @@ -49,19 +49,18 @@ <h2 th:text="#{gui.countryselection.header3}"> Betrieben durch das Bundesministerium für Inneres </h2> </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 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> - <h1 th:text="#{gui.otherlogin.header.selection}"> Select an alternative login method </h1> + <h3 th:text="#{gui.otherlogin.header.selection}"> Select an alternative login method </h3> <div id="otherlogin" class="block"> <form method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> @@ -72,47 +71,47 @@ <input type="hidden" name="pendingid" value="$pendingid" th:attr="value=${pendingid}"/> </form> <form method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> - <button type="submit" role="button" value="Andere eIDAS ID" + <button type="submit" role="button" value="Andere eIDAS ID" th:text="#{gui.otherlogin.button.eidas}">B </button> <input type="hidden" name="loginSelection" value="EIDAS_LOGIN"> <input type="hidden" name="pendingid" value="$pendingid" th:attr="value=${pendingid}"/> </form> <form method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> - <button type="submit" role="button" value="Keine weitere HS / eIDAS" + <button type="submit" role="button" value="Keine weitere HS / eIDAS" th:text="#{gui.otherlogin.button.none}">C </button> <input type="hidden" name="loginSelection" value="NO_OTHER_LOGIN"> <input type="hidden" name="pendingid" value="$pendingid" th:attr="value=${pendingid}"/> </form> - + <div id="insertErnp" class="block" th:if="${advancedMatchingFailed != null} and ${advancedMatchingFailed}"> - + <br> - + <p th:text="#{gui.otherlogin.inserternp.infotext}"></p> - + <br> - + <form class="block" method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> - <button type="submit" role="button" value="Keine weitere HS / eIDAS" + <button type="submit" role="button" value="Keine weitere HS / eIDAS" th:text="#{gui.otherlogin.button.inserternp}">D </button> <input type="hidden" name="loginSelection" value="ADD_ME_AS_NEW"> <input type="hidden" name="pendingid" value="$pendingid" th:attr="value=${pendingid}"/> </form> </div> - - </div> - - <!-- Abbrechen Button --> - <form class="block" method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> - <button type="submit" value="Abbrechen/Cancel" th:text="#{gui.otherlogin.cancel}"></button> - <input type="hidden" name="stopAuthProcess" value="true"> - <input type="hidden" name="pendingid" value="$pendingid" th:attr="value=${pendingid}"> - </form> + <div id="stopMatching" class="block"> + <!-- Abbrechen Button --> + <form class="block" method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> + <button type="submit" value="Abbrechen/Cancel" th:text="#{gui.otherlogin.cancel}"></button> + <input type="hidden" name="stopAuthProcess" value="true"> + <input type="hidden" name="pendingid" value="$pendingid" th:attr="value=${pendingid}"> + </form> + </div> + </div> </div> <footer> <div class="copyright">© BUNDESMINISTERIUM FÜR INNERES</div> |