Skip to content
Snippets Groups Projects
Forked from DM / dm-docs
261 commits behind, 55 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
userInfoCreatePanelGrid.xhtml 2.37 KiB
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
                xmlns:h="http://java.sun.com/jsf/html"
                xmlns:p="http://primefaces.org/ui"
                xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
                xmlns:c="http://xmlns.jcp.org/jsp/jstl/core">

    <c:set var="userInfoObject" value="#{userInfoController.selected}"/>

    <p:panelGrid columns="3" styleClass="createEntityDetails">

        <h:outputLabel for="username" value="Username" styleClass="entityDataEmphasizedLabel"/>
        <h:inputText id="username" value="#{userInfoObject.username}" title="Username" required="true" styleClass="entityDataEmphasizedText"/>
        <p:message for="username"/> 

        <h:outputLabel for="lastName" value="Last Name" styleClass="entityDataLabel"/>
        <h:inputText id="lastName" value="#{userInfoObject.lastName}" title="Last Name" required="true" styleClass="entityDataText"/>
        <p:message for="lastName"/>

        <h:outputLabel for="firstName" value="First Name" styleClass="entityDataLabel"/>
        <h:inputText id="firstName" value="#{userInfoObject.firstName}" title="First Name" required="true" styleClass="entityDataText"/>
        <p:message for="firstName"/> 

        <h:outputLabel for="middleName" value="Middle Name" styleClass="entityDataLabel"/>
        <h:inputText id="middleName" value="#{userInfoObject.middleName}" title="Middle Name" styleClass="entityDataText"/>
        <p:message for="middleName"/>

        <h:outputLabel for="email" value="Email" styleClass="entityDataLabel"/>
        <h:inputText id="email" value="#{userInfoObject.email}" title="Email" styleClass="entityDataText"/>
        <p:message for="email"/>

        <h:outputLabel for="password" value="Password" styleClass="entityDataLabel"/>
        <p:password id="password" value="#{userInfoObject.password}" title="Password" feedback="true" styleClass="entityDataText"/>
        <p:message for="password"/>

        <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
        <h:inputText id="description" value="#{userInfoObject.description}" title="Description" styleClass="entityDataText"/>
        <p:message for="description"/>        
        
    </p:panelGrid>

</ui:composition>