webcron/src/Controller/SecurityController.php

15 lines
292 B
PHP
Raw Normal View History

2021-04-06 19:33:20 +02:00
<?php
namespace JeroenED\Webcron\Controller;
use JeroenED\Framework\Controller;
use Symfony\Component\HttpFoundation\Response;
class SecurityController extends Controller
{
public function loginAction(): Response
{
return $this->render('security/login.html.twig');
}
}