123456789101112131415161718192021222324252627282930313233343536373839 |
- /* ====================================================================
- * The Tmax soft License, Version 1.1
- *
- * Copyright (c) 1997-2004 The Tmax software.
- * All rights reserved.
- * html code omitted for readability.
- /* ====================================================================
- <%@ include file="../../upper.jsp" %>
- <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
- <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
- <%@ page contentType="text/html; charset=euc-kr"%>
- <html>
- <body>
- <f:view>
- <fieldset>
- <legend><b><h:inputText id="product" value="JEUS" /></b></legend>
- <h:inputText id="product" value="JEUS" />
- </fieldset>
- <br>
- <fieldset>
- <legend><b><h:inputSecret value="credential" /></b></legend>
- <h:inputSecret value="credential" />
- </fieldset>
- <br>
- <fieldset>
- <legend><b><h:inputTextarea id="textArea" rows="4" cols="7" value="Java Enterprise User Solution. JEUS"/></b></legend>
- <h:inputTextarea id="textArea" rows="4" cols="50" value="Java Enterprise User Solution. JEUS"/>
- </fieldset>
- <br>
- </f:view>
- </body>
- </html>
- <%@ include file="../../footer.html" %>
|