You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookStore/web/pages/manager/manager.jsp

29 lines
628 B

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>后台管理</title>
<%@include file="/pages/common/header.jsp"%>
<style type="text/css">
h1 {
text-align: center;
margin-top: 200px;
}
</style>
</head>
<body>
<div id="header">
<img class="logo_img" alt="" src="static/img/logo1.jpg" >
<span class="wel_word">后台管理系统</span>
<%@include file="/pages/common/manager_menu.jsp"%>
</div>
<div id="main">
<h1>欢迎管理员进入后台管理系统</h1>
</div>
<%@include file="/pages/common/footer.jsp"%>
</body>
</html>