hbuilder登录页面代码
时间: 2023-08-17 19:04:23 浏览: 92
以下是 HBuilder 中一个简单的登录页面的代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>登录页面</title>
<style type="text/css">
.container {
width: 400px;
margin: 0 auto;
padding-top: 100px;
}
h2 {
text-align: center;
margin-bottom: 20px;
}
form {
text-align: center;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: none;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<div class="container">
<h2>欢迎登录</h2>
<form>
<input type="text" name="username" placeholder="用户名">
<input type="password" name="password" placeholder="密码">
<input type="submit" value="登录">
</form>
</div>
</body>
</html>
```
以上代码会生成一个简单的登录页面,包含一个用户名输入框、一个密码输入框和一个登录按钮。你可以将这段代码复制到 HBuilder 中的 HTML 文件中,并通过浏览器打开查看效果。
阅读全文