Implemented template dummys

This commit is contained in:
Kevin Frantz
2018-09-06 08:46:49 +02:00
parent e303221507
commit 99371d9521
3 changed files with 23 additions and 10 deletions

View File

@@ -2,21 +2,38 @@
namespace App\Controller;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
/**
*
* @author kevinfrantz
*
*/
class UserController implements UserControllerInterface
class UserController extends AbstractController implements UserControllerInterface
{
/**
* @Route("/user/logout", name="user_logout")
*/
public function logout(): Response
{}
{
return $this->render("user/login.html.twig",['menu_items'=>[]]);
}
/**
* @Route("/user/login", name="user_login")
*/
public function login(): Response
{}
{
return $this->render("user/login.html.twig",['menu_items'=>[]]);
}
/**
* @Route("/user/register", name="user_register")
*/
public function register(): Response
{}
{
return $this->render("user/register.html.twig",['menu_items'=>[]]);
}
}