-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.jsp
39 lines (37 loc) · 1.02 KB
/
index.jsp
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
36
37
38
39
<%--
Created by IntelliJ IDEA.
User: -QL-
Date: 2020/5/9
Time: 17:58
To change this template use File | Settings | File Templates.
--%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="./css/index.css" />
<title>仓库管理系统</title>
<style type="text/css" media="screen">
.center{
position:absolute;
width: 300px;
height: 100px;
left: 50%;
top: 30%;
margin: -100px 0px 0px -100px;
}
</style>
</head>
<center>
<div class="center">
<code><font size="5"><h3 style="color:black">欢迎使用仓库管理系统</h3></font></code>
<tr>
<a href="login.jsp"><li>用户登录</li></a>
<a href="register.jsp"><li>新用户注册</li></a>
</tr>
</div>
</body>
</center>
</html>