template_signBody.jsp 737 B

1234567891011121314151617181920212223
  1. <%@ taglib uri="/WEB-INF/template.tld" prefix="template" %>
  2. <%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
  3. <jsp:useBean id="ctx" class="com.udapsoft.waf.system.context.SessionContext" scope="session" />
  4. <%
  5. ctx.init(request, response);
  6. %>
  7. <HTML>
  8. <HEAD>
  9. <TITLE><template:insert parameter="title"/></TITLE>
  10. <META http-equiv="Content-Type" content="text/html; charset=utf-8">
  11. <!-- -->
  12. </HEAD>
  13. <BODY bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
  14. <TABLE width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
  15. <TR>
  16. <TD valign="top" align="center">
  17. <template:insert parameter="body"/>
  18. </TD>
  19. </TR>
  20. </TABLE>
  21. </BODY>
  22. </HTML>