failure.jsp 822 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <%@page contentType="text/html;charset=UTF-8"%>
  2. <%@include file="/taglibs.jsp"%>
  3. <%pageContext.setAttribute("currentHeader", "bpm-console");%>
  4. <%pageContext.setAttribute("currentMenu", "bpm-process");%>
  5. <!doctype html>
  6. <html lang="en">
  7. <head>
  8. <%@include file="/common/meta.jsp"%>
  9. <title>模型</title>
  10. <%@include file="/common/s.jsp"%>
  11. </head>
  12. <body>
  13. <%@include file="/header/bpm-console.jsp"%>
  14. <div class="row-fluid">
  15. <%@include file="/menu/bpm-console.jsp"%>
  16. <!-- start of main -->
  17. <section id="m-main" class="span10" style="float:right">
  18. <article class="m-widget">
  19. <header class="header">
  20. <h4 class="title">提醒</h4>
  21. </header>
  22. <div class="content">
  23. ${message}
  24. </div>
  25. </article>
  26. </section>
  27. <!-- end of main -->
  28. </div>
  29. </body>
  30. </html>