loginHotel.jsp
3.0 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<base href="<%=basePath%>" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,Chrome=1.0"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no"/>
<meta name="renderer" content="webkit"/>
<meta name="Keywords" content="思埠酒店管理后台"/>
<meta name="discription" content="思埠酒店管理后台"/>
<title>酒店后台登陆页面</title>
<link rel="stylesheet" type="text/css" href="resources/css/hotel/css/reset.css"/>
<link rel="stylesheet" type="text/css" href="resources/css/hotel/css/sbkzAdminLogin.css"/>
<script type="text/javascript" src="resources/js/plugins/jquery-1.7.min.js"></script>
<script type="text/javascript" src="resources/js/plugins/jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript" src="resources/js/plugins/jquery.cookie.js"></script>
<script type="text/javascript" src="resources/js/plugins/jquery.uniform.min.js"></script>
<script type="text/javascript" src="resources/js/plugins/jquery.md5.js"></script>
<script type="text/javascript" src="resources/js/custom/general.js"></script>
<script type="text/javascript" src="resources/js/custom/index.js?v=0.1.0"></script>
<!--[if IE 9]>
<link rel="stylesheet" media="screen" href="css/style.ie9.css"/>
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" media="screen" href="css/style.ie8.css"/>
<![endif]-->
<!--[if lt IE 9]>
<script src="js/plugins/css3-mediaqueries.js"></script>
<![endif]-->
</head>
<body class="loginpage">
<!--登陆界面 start-->
<div class="loginContainer login">
<!-- Title -->
<h1 class="title">思埠之家后台管理系统</h1>
<!--登陆框-->
<div class="SBKZ_form_block">
<form id="login" class="formLogin formChild1" action="javascript:void(0);" method="post" class="border-box" >
<h3 class="Ftitle">用户登录</h3>
<label class="input_item">
<b class="i-icon userName"></b>
<div class="format_input"><input type="text" placeholder="请输入用户名" name="username" id="username"/></div>
</label>
<label class="input_item">
<b class="i-icon userPassword"></b>
<div class="format_input"><input type="password" placeholder="请输入密码" name="password" id="password"/></div>
</label>
<div class="submit_btn">
<button class="lg-btn l" type="submit" id="submit_btn" style="cursor: pointer;">登 录</button>
<!--记住密码-->
<label class="r">
<input type="checkbox" />
<em>记住密码</em>
</label>
</div>
</form>
</div>
</div>
</body>
</html>