ext_inpSubm.ext.jsp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <%@ page language="java" pageEncoding="UTF-8"%>
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>来访信息</title>
  8. <style>
  9. body {
  10. font-family: Arial, sans-serif;
  11. margin: 0;
  12. padding: 0;
  13. box-sizing: border-box;
  14. background-color: #f8f9fa;
  15. }
  16. .container {
  17. width: 100%;
  18. margin: auto;
  19. padding: 20px;
  20. background-color: #fff;
  21. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  22. }
  23. header {
  24. text-align: center;
  25. padding: 20px 0;
  26. background-color: #007bff;
  27. color: white;
  28. }
  29. header h1 {
  30. margin: 0;
  31. font-size: 24px;
  32. }
  33. table {
  34. width: 100%;
  35. border-collapse: collapse;
  36. margin: 20px 0;
  37. }
  38. table th, table td {
  39. text-align: left;
  40. border-bottom: 1px solid #ddd;
  41. }
  42. table th {
  43. background-color: #f2f2f2;
  44. }
  45. footer {
  46. text-align: center;
  47. padding: 10px 0;
  48. background-color: #f1f1f1;
  49. margin-top: 20px;
  50. }
  51. footer p {
  52. margin: 0;
  53. color: #777;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58. <form action="http://localhost:8080/extRoot?type=5&token=${token}" method="post"> <%-- 这里的 &token= 就是 token,不是 &ssToken=。Lin --%>
  59. <div class="container">
  60. <header>
  61. <h1>确定提交</h1>
  62. </header>
  63. ${objMsg}
  64. <table>
  65. <tr>
  66. <td colspan="2">
  67. <input type="submit" style="width: 40%" value="确定提交"/> <%-- 有空再加 "删除"。Lin --%>
  68. <input type="button" style="width: 40%" value="不提交"/> <%-- ?type=19&def=lf_drop&token=${token}。这里的 &token= 就是 token,不是 &ssToken=。Lin --%>
  69. <input type="button" style="width: 40%" value="关闭"/>
  70. </td>
  71. </tr>
  72. </table>
  73. </div>
  74. </form>
  75. </body>
  76. </html>