123456789101112131415161718192021222324252627282930313233343536 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <% String path = request.getContextPath(); %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link href="<%=path%>/css/css_01.css" rel="stylesheet" type="text/css">
- <title>点餐推荐系统</title>
- </head>
- <body>
- <header id="header">
- <div id="menu">
- <div id="logo">
- <div>
-
- </div>
- <div id="system_title">点餐推荐系统</div>
- </div>
- <div id="rinfo">
- 当前用户:
- <span>${sessionScope.admin.username}</span>
- <span id="exit">
- <a href="#" onclick="exit();">退出</a>
- </span>
- </div>
- </div>
- </header>
- </body>
- <script type="text/javascript">
- function exit(){
- window.top.location.href = '<%=path%>/adminlogout.jsp';
- }
- </script>
- </html>
|