-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.jsp
More file actions
35 lines (35 loc) · 717 Bytes
/
index.jsp
File metadata and controls
35 lines (35 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<%--
Created by IntelliJ IDEA.
User: Byte
Date: 2020/6/5
Time: 15:01
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>$Title$</title>
<meta charset="UTF-8">
<style>
#link{
text-align: center;
font-size: 50px;
}
a:hover{
color: #2b669a;
}
a:link{
color: #66cdff;
}
a:visited{
color: #66cdff;
}
</style>
</head>
<body>
<b>${sessionScope.user},欢迎您</b>
<div id="link">
<a href="${pageContext.request.contextPath}/searchServlet" style="text-align: center;text-decoration-line: none">用户信息查询</a>
</div>
</body>
</html>