Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. xmlns:h="http://java.sun.com/jsf/html">
  5. <h:head>
  6. <title>CASINO Login</title>
  7. </h:head>
  8. <h:body>
  9. <h:form>
  10. <h3>CASINO Login</h3>
  11. <h:outputText value="Userid" />
  12. <h:inputText id="userid" value="#{login.userid}"></h:inputText>
  13. <h:message for="userid"></h:message>
  14. <br></br><br></br>
  15.  
  16. <h:outputText value="Password" />
  17. <h:inputSecret id="password" value="#{login.pwd}"></h:inputSecret>
  18. <h:message for="password"></h:message>
  19. <br></br><br></br>
  20.  
  21. <h:commandButton action="#{login.validateUserIDPassword}"
  22. value="Login"></h:commandButton>
  23. </h:form>
  24. </h:body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement