src.txt 976 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* ====================================================================
  2. * The Tmax soft License, Version 1.1
  3. *
  4. * Copyright (c) 1997-2004 The Tmax software.
  5. * All rights reserved.
  6. * html code omitted for readability.
  7. /* ====================================================================
  8. <%@ include file="../../upper.jsp" %>
  9. <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
  10. <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
  11. <html>
  12. <body>
  13. <f:view>
  14. <h:form>
  15. <h:inputText value="aaaaaaaaa"/>
  16. </h:form>
  17. <h:outputLink value="http://www.tmaxsoft.com">
  18. <h:outputText value="www.tmaxsoft.com"/>
  19. </h:outputLink>
  20. <br><br><br>
  21. <h:outputLabel for="userId">
  22. <h:outputText id="userId" value="TMAXSOFT"/>
  23. </h:outputLabel>
  24. <br><br><br>
  25. <h:inputTextarea value="TMAXSOFT"/>
  26. <br><br><br>
  27. <h:commandButton value="TMAXSOFT-PUSH" action="/examples/"/>
  28. <br><br><br>
  29. </f:view>
  30. </body>
  31. </html>
  32. <%@ include file="../../footer.html" %>