Files
OldPeopleHome/web/addPeople.html
2019-09-04 19:56:12 +08:00

46 lines
1.6 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="icons/favicon.png">
<link rel="stylesheet" href="addPeople_style.css">
</head>
<body>
<div class="box1">
<span class="upper">O</span>
<span class="lower">ld</span>
<span class="upper">P</span>
<span class="lower">eople</span>
<span class="upper">H</span>
<span class="lower">ome</span>
</div>
<div class="register_1">
<h3>老人注册</h3>
<form>
<input type="text" placeholder="账号"><br>
<input type="password" placeholder="密码"><br>
<input type="button" value="next" id="next">
</form>
</div>
<div class="register_2">
<h3>老人注册</h3>
<form action="firstPage.html">
<input type="text" placeholder="姓名"><br>
<input type="text" placeholder="身份证号"><br>
<div class="gender">
<input type="radio" value="mele">
<span></span>
<input type="radio" value="female">
<span></span><br>
</div>
<span id="birthday">生日:</span>
<input type="date" id="date"><br>
<input type="text" placeholder="入住房间"><br>
<input type="submit" value="OK" id="submit">
</form>
</div>
</body>
</html>