1234567891011121314151617181920212223242526 |
- <%@ page contentType="text/html; utf-8" pageEncoding="UTF-8" %>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- </head>
- <body>
- <h1> ${sessionScope.user.username} 欢迎您</h1>
- <input type="button" value="新增" ><br>
- <hr>
- <table border="1" cellspacing="0" width="80%">
- <tr>
- <th>序号</th>
- <th>品牌名称</th>
- <th>企业名称</th>
- <th>排序</th>
- <th>品牌介绍</th>
- <th>状态</th>
- <th>操作</th>
- </tr>
- </table>
- </body>
- </html>
|