I have the next code:
Inicio de Sesión
If you're using the ancient JSF 1.0/1.1 implementations, then you need to wrap HTML in
tags like so:
Inicio de Sesión
...
Otherwise they will end up in the top of the generated document, before all JSF components.
If you're using a JSF 1.2 implementation or newer, then you should be able to write plain HTML in template text without problems since they are automatically taken as verbatim in the component tree. The only cause for the form not being rendered would be that LoginController#isSession()
returned true
since that's what its rendered
attribute is depending on.