- pwRequirementCheck und checkDoublePw aus Controller ins Model - Alle Passwort- und E-Mail-Validierungen jetzt zentral im Model - Controller macht nur noch Request/Response Handling - Saubere MVC-Trennung
21 lines
943 B
PHTML
21 lines
943 B
PHTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<title>Bib Arts</title>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="/bibarts/CSS/style.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<div id="wrapper">
|
|
<nav id="navigation">
|
|
<div class="link-container">
|
|
<div id="logo" ><a class="link-logo" href="#"></a></div>
|
|
<a id="link-ausstellungen" class="links" href="?controller=Event&do=showEvents">Ausstellungen</a>
|
|
<a id="link-tickets" class="links" href="#">Tickets</a>
|
|
<a id="link-news" class="links" href="?controller=News&do=showNews">Startseite</a>
|
|
<a id="link-profil" class="links" href="?controller=Contact&do=showContactForm">Profil</a>
|
|
<div id="profile-picture"></div>
|
|
</div>
|
|
</nav>
|
|
</div> |