建立登陆页面html
时间: 2024-10-24 13:04:18 浏览: 15
创建一个基本的登录页面HTML,通常包含以下几个部分:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>登录页面</title>
<!-- 可选:添加一些CSS样式以美化界面 -->
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5f5f5;
}
.login-form {
width: 300px;
padding: 20px;
background-color: white;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="login-form">
<h2>登录</h2>
<form action="#" method="post">
<label for="username">用户名:</label>
<input type="text" id="username" name="username" required>
<label for="password">密码:</label>
<input type="password" id="password" name="password" required>
<button type="submit">登录</button>
<!-- 还可以添加“忘记密码”、“注册”链接 -->
</form>
</div>
</body>
</html>
```
这个例子展示了一个简单的登录表单,包括输入框(用户名和密码)以及提交按钮。实际应用中,还需要配合服务器端的处理(如PHP、Node.js等),并可能需要安全性考虑,比如加密用户密码。
阅读全文