|
@@ -0,0 +1,73 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <title>Document</title>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <!-- 居中 -->
|
|
|
+ <center>
|
|
|
+ <h1>注册信息</h1>
|
|
|
+ <table>
|
|
|
+
|
|
|
+ <tr>
|
|
|
+ <td>用户名:</td>
|
|
|
+ <td><input type="text" placeholder="请输入用户名"></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>密码:</td>
|
|
|
+ <td><input type="paddword"></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>性别:</td>
|
|
|
+ <td>
|
|
|
+ <input type="radio" name="sex">男
|
|
|
+ <input type="radio" name="sex">女
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>兴趣爱好:</td>
|
|
|
+ <td>
|
|
|
+ <input type="checkbox">足球
|
|
|
+ <input type="checkbox">篮球
|
|
|
+ <input type="checkbox">排球
|
|
|
+ <input type="checkbox">游泳<br>
|
|
|
+ <input type="checkbox">网球
|
|
|
+ <input type="checkbox">旅游
|
|
|
+ <input type="checkbox">绘画
|
|
|
+ <input type="checkbox">读书
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>最高学历</td>
|
|
|
+ <td>
|
|
|
+ <select name="" id="">
|
|
|
+ <option value="">xxx</option>
|
|
|
+ <option value="">yyy</option>
|
|
|
+ </select>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>个人说明</td>
|
|
|
+ <td>
|
|
|
+ <textarea cols="30" rows="5"></textarea>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>
|
|
|
+ <input type="reset">
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <input type="button" value="注册">
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+
|
|
|
+ </table>
|
|
|
+ <br>
|
|
|
+ <a href="#"><b>提示</b>:注册成功之后请点击这里您将直接登陆系统!</a>
|
|
|
+ </center>
|
|
|
+
|
|
|
+</body>
|
|
|
+</html>
|