diff options
author | Thomas <> | 2021-11-16 15:02:30 +0100 |
---|---|---|
committer | Thomas <> | 2021-11-16 15:02:30 +0100 |
commit | f02787f6186169aef9e5fc131b4c82cded1b615a (patch) | |
tree | 34237a4d2fb5f2f5370f1451e52f99e4ec419af2 /basicConfig/templates | |
parent | d152f2893495c29b46c9054b1086538ef39a9ebf (diff) | |
download | National_eIDAS_Gateway-f02787f6186169aef9e5fc131b4c82cded1b615a.tar.gz National_eIDAS_Gateway-f02787f6186169aef9e5fc131b4c82cded1b615a.tar.bz2 National_eIDAS_Gateway-f02787f6186169aef9e5fc131b4c82cded1b615a.zip |
update 'advanced matching steps' tasks to optimize user handling between 'ID Austria Login', 'alternative eIDAS Login', and 'address search'
Diffstat (limited to 'basicConfig/templates')
-rw-r--r-- | basicConfig/templates/other_login_method.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/basicConfig/templates/other_login_method.html b/basicConfig/templates/other_login_method.html index 035c359f..fffe3930 100644 --- a/basicConfig/templates/other_login_method.html +++ b/basicConfig/templates/other_login_method.html @@ -160,6 +160,10 @@ form { Für eine eindeutig Integration sind weitere Informationen erforderlich. </p> + <div th:if="${advancedMatchingFailed != null} and ${advancedMatchingFailed}"> + <b th:text="#{gui.matching.otherloginmethod.error.title}">Info</b> <span th:text="#{gui.matching.otherloginmethod.error.msg}"></span></p> + </div> + <div id="country"> <form class="block" method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> <input type="submit" role="button" value="Sie verfügen über einen ID Austria" th:attr="value=#{gui.matching.otherloginmethod.ida}" /> @@ -178,6 +182,12 @@ form { <input type="hidden" name="loginSelection" value="NO_OTHER_LOGIN"> <input type="hidden" name="pendingid" value="$pendingid" th:attr="value=${pendingid}" /> </form> + + <form class="block" method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> + <input type="submit" role="button" value="Neuregistrierung im österreichischen eID System" th:attr="value=#{gui.matching.otherloginmethod.addmeasnew}" /> + <input type="hidden" name="loginSelection" value="ADD_ME_AS_NEW"> + <input type="hidden" name="pendingid" value="$pendingid" th:attr="value=${pendingid}" /> + </form> </div> |