<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>网站登录</title>
</head>
<body>
<h1 align="center">惠美网站会员登录</h1>
<form >
<table align="center" width="300px" height="300px">
<tr>
<td>贵美网站邮箱:</td>
<td><input type="text" id="name" name="username"></td>
</tr>
<tr>
<td>输入密码:</td>
<td><input type="password" id="pass" name="pass"></td>
</tr>
<tr>
<td>确认输入密码:</td>
<td><input type="password" id="qrpass" name="qrpass"></td>
</tr>
<tr>
<td><input type="radio" name="sex" value="豪华版">豪华版</td>
<td><input type="radio" name="sex" value="简洁版">简洁版</td>
</tr>
<tr>
<td><input type="checkbox" name="sex" value="自动登录">自动登录</td>
<td><input type="checkbox" name="sex" value="安全登录">安全登录</td>
</tr>
<tr>
<td colspan="2" align="center">
<input value="重置" type="reset" id="but_cz" />
<input value="登录" type="button" id="but_dl" οnclick="check()" />
</td>
</tr>
<tr>
<td colspan="5" align="center">
<button style="text-align: center; background-color: coral; width: 120px;">现在就注册</button>
</td>
</tr>
</table>
</form>
</body>
</html>