Files
kaffeekasse-saas/widerruf.php
T

39 lines
1.9 KiB
PHP
Raw 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('withdrawal_information');
?>
<!DOCTYPE HTML>
<html lang="de">
<head>
<title>Widerrufsbelehrung 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>Widerrufsbelehrung</h1></header>
<p><a href="widerrufen.php" class="button primary big">Vertrag widerrufen</a></p>
<?php echo app_render_legal_document('withdrawal_information'); ?>
<p><a href="legal/widerruf-<?php echo htmlspecialchars(APP_WITHDRAWAL_VERSION, ENT_QUOTES, 'UTF-8'); ?>.txt" download>Widerrufsbelehrung und Musterformular 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>