<!DOCTYPE html>
<!--这是由dkplus编写的登录页面 个人网页设计模板http://dkplus.
<html lang="zh">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<title>dk+登录页面</title>
</head>
<body>
<div id="log">
<h1>登录</h1>
<div id="log_form">
<form method="post">
<div>
<label for="u_name">用户名</label>
<input type="text" name="u_name" id="u_name" placeholder="用户名" required>
</div>
<div>
<label for="u_password">密码</label>
<input type="password" name="u_password" id="u_password" placeholder="密码" required>
</div>
<div id="u_remember">
<input type="checkbox" name="u_remember">
<label for="u_remember">记住密码</label>
<a href="#">忘记密码</a>
</div>
<div>
<button id="log_btn" type="submit">登录</button>
</div>
</form>
<div><a href="registration/registration.html"><button id="reg_btn">注册</button> </a></div>
</div>
</div>
</body>
</html>