这是一个简单的登录注册界面的HTML代码示例。请注意,这只是一个基本的界面设计,并没有包含任何后端逻辑或数据库交互。在实际应用中,你需要添加更多的功能,如验证用户输入,处理注册信息等等。此外,出于安全考虑,密码应该通过安全的方式存储和传输。

HTML代码:
<!DOCTYPE html>
<html>
<head>
<title>登录注册页面</title>
<style>
body {
font-family: Arial, sans-serif;
}
.container {
width: 300px;
margin: 0 auto;
}
.form-group {
margin-bottom: 15px;
}
.btn {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<!-- 登录表单 -->
<h2>登录</h2>
<form action="/login" method="post">
<div class="form-group">
<label for="username">用户名:</label>
<input type="text" id="username" name="username" required>
</div>
<div class="form-group">
<label for="password">密码:</label>
<input type="password" id="password" name="password" required>
</div>
<button class="btn" type="submit">登录</button>
</form>
<!-- 注册表单 -->
<h2 style="margin-top: 30px;">注册</h2>
<form action="/register" method="post">
<div class="form-group">
<label for="username">用户名:</label>
<input type="text" id="username" name="username" required>
</div>
<div class="form-group">
<label for="email">邮箱:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="password">密码:</label>
<input type="password" id="password" name="password" required>
</div>
<button class="btn" type="submit">注册</button>
</form>
</div> <!-- 结束 container -->
</body>
</html>这个简单的HTML页面包含了登录和注册的表单,用户可以在这里输入他们的用户名和密码进行登录或注册,表单的提交动作(action)被设置为"/login"和"/register",这表示当用户提交表单时,数据将被发送到服务器的这两个路径进行处理,在实际应用中,你需要根据你的后端服务器设置正确的路径,请注意在实际应用中需要添加更多的安全措施和验证来确保用户数据的安全和准确性。





