请帮我写一个html的登陆页面代码
时间: 2023-10-22 15:09:50 浏览: 159
当然可以,请参考以下代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>登陆页面</title>
<meta charset="utf-8">
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
form {
background-color: #fff;
margin: 50px auto;
padding: 20px;
max-width: 400px;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
border-radius: 5px;
}
input[type="text"], input[type="password"] {
display: block;
margin: 10px 0;
padding: 5px;
border-radius: 3px;
border: 1px solid #ccc;
width: 100%;
box-sizing: border-box;
font-size: 16px;
}
input[type="submit"] {
background-color: #4CAF50;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 3px;
cursor: pointer;
font-size: 16px;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<form action="" method="post">
<h2>登陆</h2>
<label for="username">用户名:</label>
<input type="text" name="username" id="username" placeholder="请输入用户名" required>
<label for="password">密码:</label>
<input type="password" name="password" id="password" placeholder="请输入密码" required>
<input type="submit" value="登陆">
</form>
</body>
</html>
```
注意,这只是一个简单的登陆页面,还需要后端代码来进行验证用户名和密码是否正确。
阅读全文