| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <%@ page language="java" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>来访信息</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- background-color: #f8f9fa;
- }
- .container {
- width: 100%;
- margin: auto;
- padding: 20px;
- background-color: #fff;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
- }
- header {
- text-align: center;
- padding: 20px 0;
- background-color: #007bff;
- color: white;
- }
- header h1 {
- margin: 0;
- font-size: 24px;
- }
- table {
- width: 100%;
- border-collapse: collapse;
- margin: 20px 0;
- }
- table th, table td {
- text-align: left;
- border-bottom: 1px solid #ddd;
- }
- table th {
- background-color: #f2f2f2;
- }
- footer {
- text-align: center;
- padding: 10px 0;
- background-color: #f1f1f1;
- margin-top: 20px;
- }
- footer p {
- margin: 0;
- color: #777;
- }
- </style>
- </head>
- <body>
- <form action="http://localhost:8080/extRoot?type=5&token=${token}" method="post"> <%-- 这里的 &token= 就是 token,不是 &ssToken=。Lin --%>
- <div class="container">
- <header>
- <h1>确定提交</h1>
- </header>
- ${objMsg}
- <table>
- <tr>
- <td colspan="2">
- <input type="submit" style="width: 40%" value="确定提交"/> <%-- 有空再加 "删除"。Lin --%>
- <input type="button" style="width: 40%" value="不提交"/> <%-- ?type=19&def=lf_drop&token=${token}。这里的 &token= 就是 token,不是 &ssToken=。Lin --%>
- <input type="button" style="width: 40%" value="关闭"/>
- </td>
- </tr>
- </table>
- </div>
- </form>
- </body>
- </html>
|