Compare commits

..

No commits in common. "ca757d172355962a639bfd82a0adf5e8d409e108" and "404e8464186f8fb8aa36a5a7038d00bfb84f3f5b" have entirely different histories.

5 changed files with 4 additions and 26 deletions

View File

@ -1,23 +0,0 @@
<div class="inhalt">
<div class="login-container">
<h1>Anmelden</h1>
<?php if (!empty($errors['login'])): ?>
<div class="login-error"><?=htmlspecialchars($errors['login'])?></div>
<?php endif; ?>
<form class="form-horizontal" action="index.php" method="post">
<input type="hidden" name="controller" value="Auth">
<input type="hidden" name="do" value="login">
<label for="email">E-Mail</label>
<input class="input-email" type="email" name="email" id="email" placeholder="E-Mail" required>
<label for="password">Passwort</label>
<input class="input-passwort" type="password" name="password" id="password" placeholder="Passwort" required>
<button class="button-loggin" type="submit">Login</button>
</form>
<div style="text-align:center; margin-top: 1.5em;">
<a class="link-passwort-vergessen" href="?controller=Auth&do=showForgotPasswordForm">Passwort vergessen?</a>
<br>
<a class="link-konto-erstellen" href="?controller=Auth&do=showRegistrationForm">Konto erstellen</a>
</div>
</div>
</div>

View File

View File

@ -30,4 +30,4 @@
<?php endif; ?> <?php endif; ?>
</div> </div>
</div> </div>
</div> </div>

View File

@ -1,6 +1,7 @@
<?php if (!empty($news)): ?> <?php if (!empty($news)): ?>
<div class="inhalt">
<table> <table>
<thead> <thead>
<tr> <tr>

View File

@ -13,7 +13,7 @@
<button id="nav-toggle-btn" aria-label="Menü ein-/ausklappen">&#9660;</button> <button id="nav-toggle-btn" aria-label="Menü ein-/ausklappen">&#9660;</button>
<div class="nav-links"> <div class="nav-links">
<a id="link-tickets" class="links" href="?controller=Event&do=showEvents">Event</a> <a id="link-tickets" class="links" href="?controller=Event&do=showEvents">Event</a>
<a id="link-infos" class="links" href="?controller=News&do=showNews">Infos</a> <a id="link-infos" class="links" href="?controller=Welcome&do=showWelcome">Infos</a>
<a id="link-profil" class="links" href="?controller=Profile&do=showProfile">Profil</a> <a id="link-profil" class="links" href="?controller=Profile&do=showProfile">Profil</a>
<?php if (isset($_SESSION['user'])): ?> <?php if (isset($_SESSION['user'])): ?>
<a id="link-logout" class="links" href="?controller=Auth&do=logout">Logout</a> <a id="link-logout" class="links" href="?controller=Auth&do=logout">Logout</a>