diff options
Diffstat (limited to 'basicConfig')
| -rw-r--r-- | basicConfig/templates/other_login_method.html | 35 | 
1 files changed, 24 insertions, 11 deletions
| diff --git a/basicConfig/templates/other_login_method.html b/basicConfig/templates/other_login_method.html index c233c5c4..ea15864e 100644 --- a/basicConfig/templates/other_login_method.html +++ b/basicConfig/templates/other_login_method.html @@ -8,6 +8,16 @@      <meta name="viewport" content="width=device-width, initial-scale=1">      <link rel="stylesheet" href="$contextPath/static/css/css_country.css" th:href="@{/static/css/css_country.css}"/>      <title th:text="#{gui.otherlogin.title}">eIDAS-Login Other Login Methods</title> +    <style> +        .block { +            width: 100%; +        } +        button { +            padding: 0.5em; +            margin: 0.5em; +            width: 20em; +        } +    </style>  </head>  <body>  <div class="header container"> @@ -41,29 +51,32 @@      <h1 th:text="#{gui.otherlogin.header.selection}"> Select an alternative login method </h1> -    <div id="otherlogin"> -        <form class="block" method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> -            <input type="submit" role="button" value="Handy-Signatur / Mobile Signature" -                   th:attr="value=#{gui.otherlogin.hs}"/> +    <div id="otherlogin" class="block"> +        <form method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> +            <button type="submit" role="button" value="Handy-Signatur / Mobile Signature" +                    th:text="#{gui.otherlogin.hs}">A +            </button>              <input type="hidden" name="loginSelection" value="MOBILE_PHONE_SIGNATURE_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="Andere eIDAS ID" th:attr="value=#{gui.otherlogin.eidas}"/> +        <form method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> +            <button type="submit" role="button" value="Andere eIDAS ID" th:text="#{gui.otherlogin.eidas}">B +            </button>              <input type="hidden" name="loginSelection" value="EIDAS_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="Keine weitere HS / eIDAS" th:attr="value=#{gui.otherlogin.none}"/> +        <form method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> +            <button type="submit" role="button" value="Keine weitere HS / eIDAS" +                    th:text="#{gui.otherlogin.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>      <!-- Abbrechen Button --> -    <form class="block" method="post" action="$contextPath$submitEndpoint" th:attr="action=@{${submitEndpoint}}"> -        <input type="submit" class="btn btn-outline-primary btn-block" value="Abbrechen/Cancel" -               th:attr="value=#{gui.otherlogin.cancel}"> +    <form 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> | 
