response-msg-m.jsp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <%@include file="/common/taglibs.jsp" %>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  8. <meta name="viewport" content="width=device-width, initial-scale=1" />
  9. <title>完成问卷</title>
  10. <link rel="stylesheet" href="${ctx }/js/plugs/jquery.mobile-1.4.5/jquery.mobile-1.4.5.min.css">
  11. <script type="text/javascript" src="${ctx }/js/plugs/jquery-ui-1.10.3.custom/js/jquery-1.10.1.js"></script>
  12. <script src="${ctx }/js/plugs/jquery.mobile-1.4.5/jquery.mobile-1.4.5.min.js"></script>
  13. <link href="${ctx }/js/plugs/font-awesome-4.2.0/css/font-awesome.css" rel="stylesheet">
  14. <style type="text/css">
  15. .ui-page {
  16. background:white;
  17. }
  18. .ui-header{
  19. /* background-color: #3D586C! important; */
  20. text-shadow:0 1px 0 #5C4242! important;
  21. background-color: #5693C0! important;
  22. }
  23. .ui-content{
  24. padding: 40px 1em;
  25. text-align: center;
  26. }
  27. .ui-footer{
  28. color: #3D586C! important;
  29. background: none! important;
  30. }
  31. .ui-header, .ui-footer{
  32. border: none! important;
  33. }
  34. .starRating{
  35. font-size: 26px;
  36. }
  37. .starRating .fa{
  38. cursor: pointer;
  39. }
  40. .starRating .fa-star{
  41. color: #3388CC;
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <div data-role="page">
  47. <div data-role="header" >
  48. <h1 style="color:rgb(244, 234, 195);">${directory.surveyName }</h1>
  49. </div>
  50. <div data-role="content">
  51. <p>${msg }</p>
  52. </div>
  53. <div data-role="footer">
  54. <h3>Powered by <a href="http://www.diaowen.net/index-m.jsp" style="text-decoration: none;" rel="external">DWSurvey</a> </h3>
  55. </div>
  56. </div>
  57. <%@ include file="/WEB-INF/page/layouts/other.jsp"%>
  58. </body>
  59. </html>