2019独角兽企业重金招聘Python工程师标准>>>
快速开发系统之前台页面 ---- NO1----登录页面
<%@ page language="java" contentType="text/html; charset=utf-8"pageEncoding="utf-8"%>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>快速开发系统--登录页面</title>
<link rel="stylesheet" type="text/css"href="${pageContext.request.contextPath }/resources/easyui/themes/default/easyui.css">
<link rel="stylesheet" type="text/css"href="${pageContext.request.contextPath }/resources/easyui/themes/icon.css">
<link rel="stylesheet" type="text/css"href="${pageContext.request.contextPath }/resources/css/basic/common.css">
<script type="text/javascript"src="${pageContext.request.contextPath }/resources/easyui/jquery.min.js"></script>
<script type="text/javascript"src="${pageContext.request.contextPath }/resources/easyui/jquery.easyui.min.js"></script>
<script type="text/javascript"src="${pageContext.request.contextPath }/resources/easyui/locale/easyui-lang-zh_CN.js"></script>
<style type="text/css">
body {margin: 0 auto;text-align: center;
}.loginBox {position: fixed;width: 350px;height: 300px;text-align: center;position: absolute;left: 50%;top: 50%;margin-left: -175px;margin-top: -150px;
}
</style>
</head>
<body><div class=loginBox><div class="easyui-panel" title="登录窗口"><div style="padding: 10px 60px 20px 60px"><form id="ff" method="post"><table cellpadding="5"><tr><td>账号:</td><td><input class="easyui-textbox" type="text" name="name"data-options="required:true"></input></td></tr><tr><td>密码:</td><td><input class="easyui-textbox" type="text" name="email"data-options="required:true"></input></td></tr></table></form><div style="text-align: center; padding: 10px"><a href="javascript:void(0)" class="easyui-linkbutton"onclick="submitForm()">登录</a> <a href="javascript:void(0)"class="easyui-linkbutton" style="margin-left: 30px;"onclick="clearForm()">重置</a></div></div></div></div><script>function submitForm(){$('#ff').form('submit');}function clearForm(){$('#ff').form('clear');}</script>
</body>
</html>