Dies ist eine alte Version des Dokuments!


Beispiel für eine EU-DSGVO-konforme Konfiguration des User Consent Moduls - statische Seite (JSP) zur Anzeige des Wortlauts der Terms of Use

Zurück zur Hauptseite <file html ./edit-webapp/tou.jsp> <%@ page pageEncoding=„UTF-8“ %> <%@ taglib uri=„http://www.springframework.org/tags“ prefix=„spring“ %> <!DOCTYPE html> <html>

<head>
  <meta charset="utf-8">
  <title><spring:message code="root.title" text="Shibboleth IdP" /> - Funktionsweise</title>
  <link rel="stylesheet" type="text/css" href="<%= request.getContextPath()%>/css/consent.css">
</head>
<body>
  <div class="box">
      <header>
        <img src="<%= request.getContextPath() %><spring:message code="idp.logo" />" alt="<spring:message code="idp.logo.alt-text" text="logo" />">
      </header>
  
      <div id="tou-content">
          <strong><spring:message code="my-tou.text.staticprefix" text="Wortlaut der" />
          <spring:message code="my-tou.title" text="Einwilligungserklärung" /></strong>
          <spring:message code="my-service-description" text="Beschreibung IdP" />
          <spring:message code="my-tou.text" text="Text der Einwilligungserklärung" />
      </div>
    <footer>
      <div class="container container-footer">
        <p class="footer-text"><spring:message code="root.footer" text="Insert your footer text here." /></p>
      </div>
    </footer>
  </div>
</body>

</html> </jsp>

  • Zuletzt geändert: vor 5 Jahren