brand.jsp 546 B

1234567891011121314151617181920212223242526
  1. <%@ page contentType="text/html; utf-8" pageEncoding="UTF-8" %>
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Title</title>
  7. </head>
  8. <body>
  9. <h1> ${sessionScope.user.username} 欢迎您</h1>
  10. <input type="button" value="新增" ><br>
  11. <hr>
  12. <table border="1" cellspacing="0" width="80%">
  13. <tr>
  14. <th>序号</th>
  15. <th>品牌名称</th>
  16. <th>企业名称</th>
  17. <th>排序</th>
  18. <th>品牌介绍</th>
  19. <th>状态</th>
  20. <th>操作</th>
  21. </tr>
  22. </table>
  23. </body>
  24. </html>