added showTickets.phtml and added the TicketsController.

This commit is contained in:
2025-07-07 09:08:39 +02:00
parent 586322a189
commit cc4bc791c9
9 changed files with 55 additions and 8 deletions

View File

@@ -164,6 +164,20 @@ a {
box-sizing: border-box;
}
.tickets-container {
position: absolute;
top: 200px;
background-color: #BAC8D4;
width: 900px;
height: 450px;
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
@media (max-width: 600px) {
body {
font-size: 14px;
@@ -283,10 +297,23 @@ a {
padding: 16px 8px;
box-sizing: border-box;
}
.tickets-container {
position: static;
width: 95vw;
max-width: 400px;
height: auto;
margin: 24px auto;
padding: 16px 8px;
box-sizing: border-box;
}
.login-container h1 {
font-size: 1.5em;
text-align: center;
}
.tickets-container h1 {
font-size: 1.5em;
text-align: center;
}
.login-container form,
.login-container label,
.login-container input {