好看html用户登录界面代码
时间: 2023-08-11 17:04:38 浏览: 71
以下是一个简单的 HTML 用户登录界面的代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>User Login</title>
<style type="text/css">
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
form {
background-color: #fff;
color: #333;
padding: 20px;
max-width: 500px;
margin: 50px auto;
border-radius: 5px;
box-shadow: 0px 0px 10px #aaa;
}
h1 {
text-align: center;
margin-bottom: 30px;
}
input[type="text"], input[type="password"] {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
border: none;
box-shadow: 0px 0px 5px #aaa;
font-size: 16px;
font-family: Arial, sans-serif;
}
input[type="submit"] {
background-color: #4CAF50;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
margin-top: 20px;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<form action="#" method="post">
<h1>User Login</h1>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<input type="submit" value="Log In">
</form>
</body>
</html>
```
这段代码会生成一个包含用户名和密码输入框的表单,并且在点击“Log In”按钮时提交表单。你可以根据自己的需要进行修改和调整。
阅读全文