M4xell
M4xell

Reputation: 321

Symfony 2 + FOSUserBundle

I read the manual for FOSUserBundle and i can't override my own template. I used solutions with create new folder in "app/resources".

I created new template for login and placed in the direction /app/resources/FOSUserBundle/Security/login.html.twig but isn't work.

Someone know why ?

Upvotes: 0

Views: 123

Answers (1)

Pi Wi
Pi Wi

Reputation: 1085

You forgot the views directory:

app/Resources/FOSUserBundle/views/Security/login.html.twig

Docs:

https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Resources/doc/overriding_templates.md

Upvotes: 1

Related Questions