fixed login and register with right linktos
This commit is contained in:
parent
415d8120e5
commit
ef3349c6e4
@ -164,7 +164,7 @@ a {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tickets-container {
|
.event-container {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 200px;
|
top: 200px;
|
||||||
background-color: #BAC8D4;
|
background-color: #BAC8D4;
|
||||||
@ -297,7 +297,7 @@ a {
|
|||||||
padding: 16px 8px;
|
padding: 16px 8px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
.tickets-container {
|
.event-container {
|
||||||
position: static;
|
position: static;
|
||||||
width: 95vw;
|
width: 95vw;
|
||||||
max-width: 400px;
|
max-width: 400px;
|
||||||
@ -310,7 +310,7 @@ a {
|
|||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.tickets-container h1 {
|
.event-container h1 {
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,10 @@
|
|||||||
<h2>Alle Ausstellungen</h2>
|
<h2>Alle Ausstellungen</h2>
|
||||||
|
|
||||||
<?php if (!empty($events)): ?>
|
<?php if (!empty($events)): ?>
|
||||||
|
<div class="inhalt">
|
||||||
|
<div class="event-container">
|
||||||
|
<h1>Tickets</h1>
|
||||||
|
<div class="event-container-inhalt">
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@ -28,5 +32,8 @@
|
|||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<p>Derzeit sind keine Ausstellungen verfügbar.</p>
|
<p>Derzeit sind keine Ausstellungen verfügbar.</p>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<?php include dirname(__DIR__) . '/footer.phtml'; ?>
|
<?php include dirname(__DIR__) . '/footer.phtml'; ?>
|
@ -12,11 +12,11 @@
|
|||||||
<div id="logo" ><a class="link-logo" href="#"></a></div>
|
<div id="logo" ><a class="link-logo" href="#"></a></div>
|
||||||
<button id="nav-toggle-btn" aria-label="Menü ein-/ausklappen">▼</button>
|
<button id="nav-toggle-btn" aria-label="Menü ein-/ausklappen">▼</button>
|
||||||
<div class="nav-links">
|
<div class="nav-links">
|
||||||
<a id="link-tickets" class="links" href="?controller=Tickets&do=showTickets">Tickets</a>
|
<a id="link-tickets" class="links" href="?controller=Event&do=showEvents">Event</a>
|
||||||
<a id="link-infos" class="links" href="?controller=Welcome&do=showWelcome">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>
|
||||||
<a id="link-login" class="links" href="?controller=Login&do=showLoginPage">Login</a>
|
<a id="link-login" class="links" href="?controller=Auth&do=showLoginForm">Login</a>
|
||||||
<a id="link-register" class="links" href="?controller=Register&do=showRegisterPage">Register</a>
|
<a id="link-register" class="links" href="?controller=Auth&do=showRegistrationForm">Register</a>
|
||||||
<div id="profile-picture"></div>
|
<div id="profile-picture"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user