利用web前端编写一段网吧管理系统的员工信息代码
时间: 2023-08-24 21:06:13 浏览: 83
网吧管理系统实现代码
下面是一个简单的员工信息管理系统的前端页面代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>网吧员工信息管理系统</title>
<meta charset="utf-8">
<style type="text/css">
table {
border-collapse: collapse;
margin: 20px;
}
th, td {
padding: 10px;
text-align: center;
border: 1px solid black;
}
form {
margin: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
label {
margin: 10px;
display: flex;
flex-direction: row;
align-items: center;
}
input[type="text"], input[type="email"] {
margin-left: 10px;
padding: 5px;
border-radius: 5px;
border: 1px solid black;
font-size: 16px;
}
input[type="submit"] {
margin: 20px;
padding: 10px;
border-radius: 5px;
border: none;
background-color: #007bff;
color: white;
font-size: 16px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>网吧员工信息管理系统</h1>
<table>
<thead>
<tr>
<th>姓名</th>
<th>性别</th>
<th>年龄</th>
<th>电话</th>
<th>邮箱</th>
</tr>
</thead>
<tbody>
<tr>
<td>张三</td>
<td>男</td>
<td>25</td>
<td>13812345678</td>
<td>zhangsan@163.com</td>
</tr>
<tr>
<td>李四</td>
<td>女</td>
<td>28</td>
<td>13987654321</td>
<td>lisi@qq.com</td>
</tr>
</tbody>
</table>
<h2>添加员工信息</h2>
<form>
<label>
姓名:
<input type="text" name="name">
</label>
<label>
性别:
<input type="text" name="gender">
</label>
<label>
年龄:
<input type="text" name="age">
</label>
<label>
电话:
<input type="text" name="phone">
</label>
<label>
邮箱:
<input type="email" name="email">
</label>
<input type="submit" value="添加">
</form>
</body>
</html>
```
这个前端页面包括了一个表格展示已有的员工信息,以及一个表单用于添加新的员工信息。你可以根据自己的需求进行修改和扩展。同时,需要注意的是这只是一个前端页面,如果要实现完整的网吧员工信息管理系统,还需要后端代码来处理数据和逻辑。
阅读全文