Search code examples
typo3typoscriptfelogin

Edit the default login.html felogin plugin in my own fluid extension


I use typo 10 and add the Felogin extension, but I want to customize / edit the login template as I want it in my own fluid extension

I have tried adding

plugin.tx_felogin_pi1 {
  templateFile = EXT: my_extension/Resources/Private/Templates/Pages/Login.html
}

but instead the default template appears. is there still less code?


Solution

  • In order to use new Fluid templates with feLogin, you have to add this Typoscript Setup :

    plugin.tx_felogin_login {
        view {
            templateRootPaths.1 = EXT:site_package/Resources/Private/Templates/
        }
    }