用html写一个会员注册界面
时间: 2023-05-25 11:02:02 浏览: 127
<!DOCTYPE html>
<html>
<head>
<title>会员注册</title>
</head>
<body>
<h1>会员注册</h1>
<form>
<label for="username">用户名</label>
<input type="text" name="username" id="username" required><br>
<label for="email">电子邮件</label>
<input type="email" name="email" id="email" required><br>
<label for="password">密码</label>
<input type="password" name="password" id="password" required><br>
<label for="confirm_password">确认密码</label>
<input type="password" name="confirm_password" id="confirm_password" required><br>
<label for="gender">性别</label>
<select name="gender" id="gender">
<option value="male">男</option>
<option value="female">女</option>
<option value="other">其他</option>
</select><br>
<input type="submit" value="注册">
</form>
</body>
</html>
阅读全文