-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path登陆.jsp
48 lines (42 loc) · 1.82 KB
/
登陆.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
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html>
<html>
<head>
<title>学生消费系统登陆界面</title>
<link rel="stylesheet" href="css/style1.css">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Simple Login Form Widget Responsive, Login Form Web Template, Flat Pricing Tables, Flat Drop-Downs, Sign-Up Web Templates, Flat Web Templates, Login Sign-up Responsive Web Template, Smartphone Compatible Web Template, Free Web Designs for Nokia, Samsung, LG, Sony Ericsson, Motorola Web Design" />
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<!-- //For-Mobile-Apps-and-Meta-Tags -->
</head>
<body>
<h1>学生消费调查系统</h1>
<div class="container w3">
<h2>现在登录</h2>
<form action="#" method="post">
<div class="username">
<span class="username" style="height:19px">用户:</span>
<input type="text" name="name" class="name" id="uname">
<div class="clear"></div>
</div>
<div class="password-agileits">
<span class="username"style="height:19px">密码:</span>
<input type="password" name="password" class="password" id="upwd">
<div class="clear"></div>
</div>
<div class="login-w3">
<input type="submit" class="login" value="登陆">
</div>
<div class="clear"></div>
</form>
</div>
<div class="footer-w3l">
<p> 学生消费调查系统</p>
</div>
</body>
</html>