forked from gitXFhub/books_system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
153 lines (149 loc) · 6.62 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<!-- 必须的 meta 标签 -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap 的 CSS 文件 -->
<link rel="stylesheet" href="dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<title>欢迎使用图书管理系统</title>
</head>
<body>
<!--导航栏-->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">图书管理系统</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#"><i class="bi bi-house-fill"></i>
借还书情况 <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><i class="bi bi-person-fill"></i>查找图书</a>
</li>
</li>
</ul>
<div class="dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
aria-expanded="false">
Admin
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#"><i class="bi bi-archive"></i> 前台设置</a>
<a class="dropdown-item" href="#"><i class="bi bi-person"></i> 个人主页</a>
<a class="dropdown-item" href="#"><i class="bi bi-gear"></i> 个人设置</a>
<a class="dropdown-item" href="#"><i class="bi bi-wallet"></i> 账户中心</a>
<a class="dropdown-item" href="#"><i class="bi bi-heart-fill"></i> 我的收藏</a>
</div>
</div>
<form class="form-inline my-2 my-lg-0">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">退出</button>
</form>
</div>
</nav>
<!--主题部分-->
<div class="container" style="margin-top: 10px;">
<div class="row">
<!-- 借书情况-->
<div class="col-md-6">
<div class="card">
<div class="card-header">
借书情况
</div>
<div class="card-body">
<table class="table table-hover">
<thead class="table-borderless">
<tr>
<th scope="col">序号</th>
<th scope="col">编号</th>
<th scope="col">书名</th>
<th scope="col">借书日期</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>注册会员</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>登录会员</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>昨日发帖</td>
<td>Xday</td>
<td>@twitter</td>
</tr>
<tr>
<th scope="row">4</th>
<td>今日发帖</td>
<td>Xday</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- 还书情况-->
<div class="col-md-6">
<div class="card">
<div class="card-header">
还书情况
</div>
<div class="card-body" style="height:290px;">
<table class="table table-hover">
<thead class="table-borderless">
<tr>
<th scope="col">序号</th>
<th scope="col">编号</th>
<th scope="col">书名</th>
<th scope="col">还书日期</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>注册会员</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>登录会员</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>昨日发帖</td>
<td>Xday</td>
<td>@twitter</td>
</tr>
<tr>
<th scope="row">4</th>
<td>今日发帖</td>
<td>Xday</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>