Files

38 lines
1.7 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
require_once __DIR__ . '/app/legal.php';
require_once __DIR__ . '/app/public-page-views.php';
app_record_public_page_view('dpa');
?>
<!DOCTYPE HTML>
<html lang="de">
<head>
<title>Auftragsverarbeitungsvertrag Kaffeeliste</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/public.css">
<?php echo app_analytics_head_html(); ?>
</head>
<body class="is-preload public-page">
<div class="public-shell">
<section class="public-section public-legal">
<nav class="public-nav" aria-label="Hauptnavigation">
<strong><a href="landing.php">Kaffeeliste</a></strong>
<ul class="actions"><li><a href="login.php" class="button">Login</a></li></ul>
</nav>
<header class="major"><h1>Auftragsverarbeitungsvertrag</h1></header>
<?php echo app_render_legal_document('dpa'); ?>
<p><a href="legal/avv-<?php echo htmlspecialchars(APP_DPA_VERSION, ENT_QUOTES, 'UTF-8'); ?>.txt" download>AVV als Textdatei speichern</a></p>
<p><a href="landing.php">&larr; Zurück zur Startseite</a></p>
</section>
</div>
<?php echo app_public_legal_footer(); ?>
<?php echo app_analytics_body_html(); ?>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>