aboutsummaryrefslogtreecommitdiff
path: root/basicConfig
diff options
context:
space:
mode:
authorThomas <>2021-11-16 15:02:30 +0100
committerThomas <>2021-11-16 15:02:30 +0100
commitf02787f6186169aef9e5fc131b4c82cded1b615a (patch)
tree34237a4d2fb5f2f5370f1451e52f99e4ec419af2 /basicConfig
parentd152f2893495c29b46c9054b1086538ef39a9ebf (diff)
downloadNational_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')
-rw-r--r--basicConfig/properties/messages.properties4
-rw-r--r--basicConfig/properties/messages_de.properties11
-rw-r--r--basicConfig/templates/other_login_method.html10
3 files changed, 25 insertions, 0 deletions
diff --git a/basicConfig/properties/messages.properties b/basicConfig/properties/messages.properties
index 3ea204dd..eae15865 100644
--- a/basicConfig/properties/messages.properties
+++ b/basicConfig/properties/messages.properties
@@ -36,6 +36,10 @@ gui.matching.otherloginmethod.info.text=Your login information could not be clea
gui.matching.otherloginmethod.ida=You have an ID Austria
gui.matching.otherloginmethod.eidas=You can provide additional information via eIDAS
gui.matching.otherloginmethod.residence=Have you ever lived in Austria?
+gui.matching.otherloginmethod.addmeasnew=Add me as new entity in Austrian eID system
+
+gui.matching.otherloginmethod.error.title=Matching of further information failed:
+gui.matching.otherloginmethod.error.msg=No identity match with additional information. Use another option or provide more information.
gui.countryselection.country.be=Belgium
diff --git a/basicConfig/properties/messages_de.properties b/basicConfig/properties/messages_de.properties
index 41ef2551..a35b9d2c 100644
--- a/basicConfig/properties/messages_de.properties
+++ b/basicConfig/properties/messages_de.properties
@@ -32,6 +32,17 @@ gui.countryselection.infos.general.part.5=Nachdem Sie auf dieser Seite einen Mit
gui.countryselection.infos.general.part.6=eingetragen. Damit wird sichergestellt, dass Sie auch im Rahmen zukünftiger Anmeldeprozesse zu österreichischen Online-Anwendungen erfolgreich und eindeutig identifiziert werden können.
+gui.matching.otherloginmethod.header=Assignment of your login information
+gui.matching.otherloginmethod.info.text=Ihre Identität konnte nicht eindeutig in das österreichische eID System integriert werden. Für eine eindeutige Integration werden weitere Informationen benötigt.
+gui.matching.otherloginmethod.ida=Sie besitzen einen ID Austria
+gui.matching.otherloginmethod.eidas=Sie können weitere Attribute via eIDAS bereitstellen
+gui.matching.otherloginmethod.residence=Sie haben bereits einmal in Österreichg gelebt?
+gui.matching.otherloginmethod.addmeasnew=Neuregistrierung im österreichischen eID System
+
+gui.matching.otherloginmethod.error.title=Erweitertes Personenmatching fehlgeschlagen:
+gui.matching.otherloginmethod.error.msg=Ihre Identität konnte nicht eindeutig zugeordnet werden. Wählen Sie eine andere Option oder stellen zusätzliche Informationen bereit.
+
+
gui.countryselection.country.be=Belgien
gui.countryselection.country.be.logo.alt=Belgische-eID
gui.countryselection.country.hr=Kroatien
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>