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/language_selection.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/language_selection.html')
-rw-r--r-- | basicConfig/templates/language_selection.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/basicConfig/templates/language_selection.html b/basicConfig/templates/language_selection.html index a268eb17..8d34c73b 100644 --- a/basicConfig/templates/language_selection.html +++ b/basicConfig/templates/language_selection.html @@ -3,13 +3,13 @@ xmlns:th="http://www.thymeleaf.org"> <body> - + <div th:fragment="selectlanguage"> - <a th:href="@{|${submitEndpoint}?pendingid=${pendingid}|(lang='de')}" th:text="#{gui.general.language.selection.de}">Spache1</a> + <a th:href="@{|${submitEndpoint}?lang=de|(pendingid=${pendingid})}" th:text="#{gui.general.language.selection.de}">Spache1</a> <span> </span> - <a th:href="@{|${submitEndpoint}?pendingid=${pendingid}|(lang='en')}" th:text="#{gui.general.language.selection.en}">Spache2</a> + <a th:href="@{|${submitEndpoint}?lang=en|(pendingid=${pendingid})}" th:text="#{gui.general.language.selection.en}">Spache2</a> </div> - + </body> - -</html>
\ No newline at end of file + +</html> |