12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <%--
- - FileName : SuppSearchId.jsp
- - Author(s) : 이성민
- -
- - Description: 계정 찾기
- --%>
-
- <%@ page contentType="text/html; charset=utf-8" %>
- <%@ page import="com.udapsoft.waf.system.HandlerStorage" %>
- <%@ page import="com.udapsoft.waf.common.ui.*" %>
- <%@ page import="kr.co.hsnc.common.util.*"%>
- <%@ page import="kr.co.hsnc.common.sql.*" %>
- <%@ include file="/jsp/work/taglib.jsp" %>
- <jsp:useBean id="ctx" class="com.udapsoft.waf.system.context.SessionContext" scope="session" />
- <%
- ctx.init(request, response);
- HandlerStorage storage = ctx.getHandlerStorage();
- ValueObject params = storage.getParams();
- ValueObject user = storage.getUser();
- String event = storage.getEvent();
-
-
-
- %>
- <modular:search id="form1">
- <modular:key id="fevent" />
- </modular:search>
- <form id="form1" name="form1" method="post" modular:type="search" action="">
- <INPUT type="hidden" name="fevent" id="fevent" value="">
- <table id="form-table" class="form-table">
- <colgroup>
- <col width="20%" />
- <col width="80%" />
- </colgroup>
-
- <tr>
- <th>사유</th>
- <td style="text-align: left;">
- <%=params.get("title") %>
- </td>
- </tr>
-
- <tr>
- <th>의견</th>
- <td style="text-align: left;">
- <%=params.get("comment") %>
- </td>
- </tr>
-
- </table>
- </form>
- </div>
|