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

@@ -2,8 +2,10 @@
namespace Blog\Controller;
class LoginController {
function showLoginPage()
{
function showLoginPage(){
}
function showPasswortVergessen(){
}
}

View File

@@ -0,0 +1,10 @@
<?php
namespace Blog\Controller;
class ProfileController {
function showProfile()
{
}
}

View File

@@ -4,7 +4,7 @@ namespace Blog\Controller;
class TicketsController {
function showTickets()
{
}
}