创建学生宿舍管理系统登录界面首页
时间: 2023-10-24 09:08:02 浏览: 84
好的,这个需求可以用 HTML 和 CSS 来实现。以下是一个简单的登录界面首页实现:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>学生宿舍管理系统</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #f2f2f2;
font-family: Arial, Helvetica, sans-serif;
}
.container {
width: 60%;
margin: 0 auto;
text-align: center;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
padding: 40px 20px;
margin-top: 80px;
}
.container h1 {
margin-top: 0;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-size: 18px;
margin-bottom: 10px;
}
.form-group input[type="text"],
.form-group input[type="password"] {
width: 100%;
padding: 10px;
font-size: 16px;
border-radius: 5px;
border: none;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.btn {
display: inline-block;
background-color: #2196f3;
color: #fff;
padding: 10px 20px;
font-size: 18px;
border-radius: 5px;
border: none;
cursor: pointer;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.btn:hover {
background-color: #0c7cd5;
}
</style>
</head>
<body>
<div class="container">
<h1>学生宿舍管理系统</h1>
<form action="#" 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 type="submit" class="btn">登录</button>
</form>
</div>
</body>
</html>
```
这个登录界面使用了一个 `.container` div 来包含整个页面内容,并在页面中央水平居中显示。其中包括一个 h1 标题和一个表单,表单包含一个用户名输入框、一个密码输入框和一个登录按钮。样式上使用了背景色、边框圆角、阴影等元素来美化界面。
阅读全文