src.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. <%@ page contentType="text/html; charset=euc-kr"%>
  12. <html>
  13. <body>
  14. <f:view>
  15. <fieldset>
  16. <legend><b>&lt;h:inputText id="product" value="JEUS" /&gt;</b></legend>
  17. <h:inputText id="product" value="JEUS" />
  18. </fieldset>
  19. <br>
  20. <fieldset>
  21. <legend><b>&lt;h:inputSecret value="credential" /&gt;</b></legend>
  22. <h:inputSecret value="credential" />
  23. </fieldset>
  24. <br>
  25. <fieldset>
  26. <legend><b>&lt;h:inputTextarea id="textArea" rows="4" cols="7" value="Java Enterprise User Solution. JEUS"/&gt;</b></legend>
  27. <h:inputTextarea id="textArea" rows="4" cols="50" value="Java Enterprise User Solution. JEUS"/>
  28. </fieldset>
  29. <br>
  30. </f:view>
  31. </body>
  32. </html>
  33. <%@ include file="../../footer.html" %>