Advertisement
Guest User

Untitled

a guest
Dec 15th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php
  2.  
  3. namespace AppBundle\Controller;
  4.  
  5. use Symfony\Bundle\FrameworkBundle\Controller\Controller;
  6. use Symfony\Component\Routing\Annotation\Route;
  7.  
  8. class SecurityController extends Controller
  9. {
  10.     /**
  11.      * @Route("/login", name="security_login")
  12.      * @return \Symfony\Component\HttpFoundation\Response
  13.      */
  14.     public function loginAction()
  15.     {
  16.         return $this->render('security/login.html.twig');
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement