37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Document</title>
|
||
|
<script type="text/javascript" src="../js/vue.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="root">
|
||
|
<form>
|
||
|
<label for="demo">账号:</label>
|
||
|
<input type="text" id="demo"><br>
|
||
|
<label for="pwd">密码:</label>
|
||
|
<input type="password" id="pwd"><br>
|
||
|
性别:
|
||
|
男<input type="radio" name="gender">
|
||
|
女<input type="radio" name="gender"><br>
|
||
|
hobby:
|
||
|
learning <input type="checkbox">
|
||
|
gamming <input type="checkbox">
|
||
|
shopping <input type="checkbox"><br>
|
||
|
books
|
||
|
<select>
|
||
|
<option value="">chose your book</option>
|
||
|
<option value="swdj">死亡赌局</option>
|
||
|
<option value="cjsj">超级手机</option>
|
||
|
<option value="xyxyx">逍遥小医仙</option>
|
||
|
<option value="jysz">绝印神座</option>
|
||
|
</select><br>
|
||
|
Others:
|
||
|
<textarea ></textarea><br>
|
||
|
阅读并接受<a href="#">《用户协议》</a>
|
||
|
</form>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|