console
<!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>
<form name="use_register" action="/" method="get" enctype="text/plain" id="us">
<table cellpadding="0" cellspacing="0">
<tr align="center">
<td colspan="2"><strong>用户信息</strong></td>
</tr>
<tr>
<td class="label">用户名:</td>
<td><input type="text" name="username" id="username"></td>
</tr>
<tr>
<td class="label">性别:</td>
<td>
<table>
<tr>
<td>
<input type="radio" name="sex" id="sex-male" value="">
男
</td>
<td>
<input type="radio" name="sex" id="sex-female" value="">
女
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>密码:</td>
<td>
<input type="password" name="password" id="password">
</td>
</tr>
<tr>
<td>确认密码:</td>
<td>
<input type="password" name="confirm-password" id="confirm-password">
</td>
</tr>
<tr>
<td>电子邮箱:</td>
<td>
<input type="text" name="email" id="email">
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="提交">
<input type="reset" value="取消">
</td>
</tr>
</table>
</form>
</div>
</body>
</html>