login2.jsp
1.5 KB
<!doctype html>
<%@page import="com.framework.util.PropertiesLoader"%>
<html>
<head>
<title><%=PropertiesLoader.get("APP_NAME") %></title>
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="all" />
<link rel="stylesheet" type="text/css" href="<%=request.getContextPath() %>/resource/library/css/login.css" />
<script type="text/javascript" src="<%=request.getContextPath() %>/resource/library/js/jquery-1.11.3.js"></script>
<script type="text/javascript" src="<%=request.getContextPath() %>/resource/library/js/common/login.js"></script>
<script type="text/javascript">
var basePath = '<%=request.getContextPath()%>';
</script>
</head>
<body class="login_bg">
<div class="login">
<h3>保税仓系统--后台登录</h3>
<div class="error" style="display: none;">
<span></span>
</div>
<ul>
<li class="user Radius"><input type="text" id="username" class="username" placeholder="用户名" autocomplete="off"></li>
<li class="key Radius"><input type="password" style="display:none;width:0;height:0;"><input type="password" id="password" onkeydown="if(event.keyCode==13)loginpwd()" class="password" placeholder="密 码" autocomplete="new-password"></li>
</ul>
<a href="javascript:void(0)" onclick="loginpwd()" class="btn_login Radius">登录</a>
</div>
<div class="footer">
</div>
</body>
</html>