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.
32 lines
979 B
32 lines
979 B
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8"> <!-- 设置字符编码为UTF-8 -->
|
|
<title>登录成功页面</title> <!-- 页面标题 -->
|
|
<%@include file="/pages/common/header.jsp"%> <!-- 引入公共头部文件 -->
|
|
<style type="text/css">
|
|
h1 {
|
|
text-align: center; <!-- 使h1内容居中对齐 -->
|
|
margin-top: 200px; <!-- 顶部外边距设置为200像素 -->
|
|
}
|
|
|
|
h1 a {
|
|
color:red; <!-- 超链接颜色设置为红色 -->
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="header">
|
|
<img class="logo_img" alt="" src="static/img/logo.jpg" > <!-- 显示网站的logo -->
|
|
<%@include file="/pages/common/login_success_menu.jsp"%> <!-- 引入登录成功后的菜单 -->
|
|
</div>
|
|
|
|
<div id="main">
|
|
<h1>欢迎回来 <a href="index.jsp">转到主页</a></h1> <!-- 欢迎信息及返回主页的链接 -->
|
|
</div>
|
|
|
|
<%@include file="/pages/common/footer.jsp"%> <!-- 引入公共底部文件 -->
|
|
</body>
|
|
</html>
|