摘要:<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>登录页面</title> <link rel="stylesheet" type="text/css"
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>登录页面</title>
<link rel="stylesheet" type="text/css" href="static/plugins/layui/css/layui.css">
<script type="text/javascript" src="static/plugins/layui/layui.js"></script>
<style type="text/css">
*{margin: 0px;padding: 0px;}
</style>
</head>
<body style="background: #ccc;">
<div style="width: 500px;background: #fff;margin:270px auto 0px; border-radius: 6px;box-shadow: 5px 5px 20px #444;padding: 20px; ">
<form>
<div style="color: gray" >
<h2>后台管理系统</h2>
</div>
<hr>
<div>
<label>用户名</label>
<div>
<input type="text" placeholder="请输入用户名">
</div>
</div>
<div>
<label>密码</label>
<div>
<input type="text" placeholder="请输入密码">
</div>
</div>
<div>
<label>验证码</label>
<div>
<input type="text">
</div>
<img src="./yz.png">
</div>
<div>
<div>
<button lay-submit lay-filter="formDemo">登录</button>
</div>
</div>
</form>
</div>
</body>
</html>
批改老师:韦小宝批改时间:2018-12-10 13:58:35
老师总结:写的不错!课后记得多去实现几个页面练习练习!