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

48 lines
1.9 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="css/icons/favicon.png">
<link rel="stylesheet" href="css/addPeople_style.css">
<script src="js/addPeople.js"></script>
<script src="../jquery/dist/jquery.min.js"></script>
</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" id="register_1" style="display: block">
<h3>老人注册</h3>
<form>
<input type="text" placeholder="账号" id="pAccount"><br>
<input type="password" placeholder="密码" id="pPassword"><br>
<input type="button" value="next" id="next" onclick="changeDiv()">
</form>
</div>
<div class="register_2" id="register_2" style="display: none">
<h3>老人注册</h3>
<form >
<input type="text" placeholder="姓名" id="name"><br>
<input type="text" placeholder="身份证号" id="cardId"><br>
<div class="gender" id="gender">
<input type="radio" name="gender" value="mele">
<span></span>
<input type="radio" name="gender" value="female">
<span></span><br>
</div>
<span id="birthday">生日:</span>
<input type="date" id="date"><br>
<input type="text" placeholder="房间号" id="roomId"><br>
<input type="button" value="OK" id="submit" onclick="over()">
</form>
</div>
</body>
</html>