html
<title>用户注册</title>
<style>
body {
font-family: Arial, sans-serif;
}
.container {
max-width: 400px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type=text], input[type=password] {

width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
button {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
}
</style>
<div class="container">
<h2>用户注册</h2>
<form action="/register" method="post"> <!-- 这里假设表单提交到服务器的"/register"接口 -->
<label for="username"><b>用户名</b></label>
<input type="text" id="username" name="username" required> <!-- 这里假设需要用户名作为注册信息 -->
<label for="password"><b>密码</b></label> <!-- 密码输入框 -->
<input type="password" id="password" name="password" required> <!-- 这里假设需要密码作为注册信息 -->
<button type="submit">注册</button> <!-- 注册按钮 -->
</form> <!-- 结束表单 -->
</div> <!-- 结束容器 -->
这只是一个基本的注册界面,实际的注册过程还需要后端服务器来处理表单数据的接收和存储,为了安全起见,密码应该通过安全的传输方式发送到服务器,并使用适当的哈希算法进行存储,在实际应用中,还需要添加更多的验证和错误处理机制。









