loginChkUser.jsp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <%--
  2. - FileName : SuppSearchId.jsp
  3. - Author(s) : 이성민
  4. -
  5. - Description: 계정 찾기
  6. --%>
  7. <%@ page contentType="text/html; charset=utf-8" %>
  8. <%@ page import="com.udapsoft.waf.system.HandlerStorage" %>
  9. <%@ page import="com.udapsoft.waf.common.ui.*" %>
  10. <%@ page import="kr.co.hsnc.common.util.*"%>
  11. <%@ page import="kr.co.hsnc.common.sql.*" %>
  12. <%@ include file="/jsp/work/taglib.jsp" %>
  13. <jsp:useBean id="ctx" class="com.udapsoft.waf.system.context.SessionContext" scope="session" />
  14. <%
  15. ctx.init(request, response);
  16. HandlerStorage storage = ctx.getHandlerStorage();
  17. ValueObject params = storage.getParams();
  18. ValueObject user = storage.getUser();
  19. String event = storage.getEvent();
  20. %>
  21. <modular:search id="form1">
  22. <modular:key id="fevent" />
  23. </modular:search>
  24. <form id="form1" name="form1" method="post" modular:type="search" action="">
  25. <INPUT type="hidden" name="fevent" id="fevent" value="">
  26. <table id="form-table" class="form-table">
  27. <colgroup>
  28. <col width="20%" />
  29. <col width="80%" />
  30. </colgroup>
  31. <tr>
  32. <th>사유</th>
  33. <td style="text-align: left;">
  34. <%=params.get("title") %>
  35. </td>
  36. </tr>
  37. <tr>
  38. <th>의견</th>
  39. <td style="text-align: left;">
  40. <%=params.get("comment") %>
  41. </td>
  42. </tr>
  43. </table>
  44. </form>
  45. </div>