|
@@ -0,0 +1,50 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <title>Document</title>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <div>
|
|
|
+ <h1>注册信息</h1>
|
|
|
+ <form>
|
|
|
+ <label>用户名:</label>
|
|
|
+ <input type="text" placeholder="请输入用户名">
|
|
|
+ <br><br>
|
|
|
+ <label>密码:</label>
|
|
|
+ <input type="password" placeholder="请输入密码">
|
|
|
+ <br><br>
|
|
|
+ <label>性别:</label>
|
|
|
+ <input type="radio" name="same">男
|
|
|
+ <input type="radio" name="same">女
|
|
|
+ <br><br>
|
|
|
+ <label>兴趣爱好:</label>
|
|
|
+ <input type="checkbox">足球
|
|
|
+ <input type="checkbox" checked>篮球
|
|
|
+ <input type="checkbox">排球
|
|
|
+ <input type="checkbox">游泳
|
|
|
+ <input type="checkbox" disabled>网球
|
|
|
+ <input type="checkbox">旅游
|
|
|
+ <input type="checkbox">绘画
|
|
|
+ <input type="checkbox">读书
|
|
|
+ <br><br>
|
|
|
+ <label>最高学历:</label>
|
|
|
+ <select>
|
|
|
+ <option value="1">小学</option>
|
|
|
+ <option value="2" selected>初中</option>
|
|
|
+ <option value="3">高中</option>
|
|
|
+ <option value="4">大学</option>
|
|
|
+ </select>
|
|
|
+ <br><br>
|
|
|
+ <label>个人说明:</label>
|
|
|
+ <textarea cols="30" rows="20"></textarea>
|
|
|
+ <br><br>
|
|
|
+ <input type="reset">
|
|
|
+ <input type="button" value="注册">
|
|
|
+ <br><br>
|
|
|
+ <a href="">提示:注册成功之后请点击这里您将直接登陆系统!</a>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+</body>
|
|
|
+</html>
|