-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.jsp
56 lines (43 loc) · 1.62 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>小型图书管理系统</title>
<link rel="Shortcut Icon" href="https://www.whut.edu.cn/favicon.ico" type="image/x-icon" />
</head>
<link rel="stylesheet" href="css/style.css" type="text/css" />
<body >
<form name="form1" method="post" action="Login" align="center">
<img style="margin:50px;" src="resource/whut.png" width=500/>
</br>
<table width="350" height="200" border="1" align="center">
<caption>
</caption>
<tr>
<td width="150">  账号:</td>
<td width="250"><input style="margin:5px;" size=25 name="user_id" type="text" id="user_id"></td>
</tr>
<tr>
<td width="150">  密码:</td>
<td width="250"><input style="margin:5px;" size=25 type="password" name="password" type="text" id="password"></td>
</tr>
<tr>
<td width="150">  身份:</td>
<td width="350">
<input checked type="radio" name="userOrAdmin" value='user'>用户</input>
<input type="radio" name="userOrAdmin" value='admin'>管理员</input>
</td>
</tr>
<tr>
<td colspan="2" align="center" >
<input type="submit" style="width:200px;height:40px" name="Submit" value="登 陆">
</td>
</tr>
</table>
<p align="center"><%=(String)session.getAttribute("message")==null?"版权所有:武汉理工大学":(String)session.getAttribute("message")%></p>
<% if(session.getAttribute("message")!=null)
session.removeAttribute("message");
%>
</form>
</body>
</html>