44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php
|
|
require_once("classes/User.php");
|
|
session_start();
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Impressum</title>
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
|
|
<link href="assets/css/styles.css" rel="stylesheet">
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body class="bg-gray-50">
|
|
<!-- Animated background blobs -->
|
|
<div class="fixed inset-0 -z-10 overflow-hidden">
|
|
<div class="blob absolute w-96 h-96 bg-sky-300/30 -top-48 -left-16"></div>
|
|
<div class="blob absolute w-96 h-96 bg-sky-300/30 bottom-0 right-0"></div>
|
|
</div>
|
|
|
|
<!-- Navigation -->
|
|
<?php include 'header.php'; ?>
|
|
|
|
<div class="content mt-24 max-w-7xl mx-[16px] xl:mx-auto">
|
|
<h1 class="text-3xl font-bold text-gray-900 mb-6">Impressum</h1>
|
|
<p class="text-gray-600 mb-4">Angaben gemäß § 5 TMG:</p>
|
|
<p class="text-gray-600 mb-4">
|
|
Horst-Schlämmer-Gedächtnis-Gymnasium<br>
|
|
Schätzeleinstraße 31<br>
|
|
41515 Grevenbroich<br>
|
|
Telefon: 01234 / 567890<br>
|
|
E-Mail: info@hsg-gymnasium.de
|
|
</p>
|
|
<p class="text-gray-600 mb-4">Verantwortlich für den Inhalt nach § 55 Abs. 2 RStV:</p>
|
|
<p class="text-gray-600">
|
|
Max Mustermann<br>
|
|
Schätzeleinstraße 31<br>
|
|
41515 Grevenbroich
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|