Files
OldPeopleHome/web/login.html
vickihe a30f27feef finish
2019-09-12 15:56:30 +08:00

28 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Old People Home - 管理员登录</title>
<link rel="icon" type="image/png" sizes="16x16" href="html/css/icons/favicon.png">
<link rel="stylesheet" href="html/css/login_style.css">
<script src="html/js/login.js"></script>
<script src="jquery/dist/jquery.min.js"></script>
</head>
<body>
<div>
<h1 class="background_text">OLD PEOPLE HOME</h1>
<div>
<p id="title_1">管理员登录</p>
<div>
<form id="name" method="POST">
<input id="account" type="text" name="account" placeholder="用户名" autofocus required="required"><br><br><br>
<input id="password" type="password" name="password" placeholder="密码" required="required"><br><br><br>
<input type="button" id="submit" value="OK" onclick="login()">
</form>
</div>
</div>
</div>
</body>
</html>