template_sign.jsp 729 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. </HEAD>
  12. <BODY bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
  13. <TABLE width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
  14. <TR>
  15. <TD valign="top" align="center">
  16. <template:insert parameter="body"/>
  17. </TD>
  18. </TR>
  19. </TABLE>
  20. </BODY>
  21. </HTML>