As you can see in the image below, the text input field is not in the firstfaces layout. Does anyone know how I can resolve?
Belowisnowmy.xhtmlfile:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui">
<h:panelGroup id="cadastro">
<h:form id="cad">
<p:panel>
<h:outputText value="Cadastro de Habilidades"
style="font-size:18px;fontweight:bold" />
<p:messages />
<p:panelGrid columns="3" styleClass="ui-noborder">
<p:outputLabel value="Nome " />
<p:inputText id="nome" value="#{habilidademb.habilidade.nome}" size="50" />
<p:message for="nome" errorClass="invalid" />
</p:panelGrid>
</p:panel>
</h:form>
</h:panelGroup>
</html>
The driver is in Maven dependencies.