-
Notifications
You must be signed in to change notification settings - Fork 1
/
bookList.php
72 lines (68 loc) · 2.14 KB
/
bookList.php
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
<?php
include('template/init.php');
include('template/function.php');
?><!DOCTYPE html>
<html lang="zh">
<head>
<?php include('template/head.php'); ?>
</head>
<body>
<?php include('template/menu.php'); ?>
<div class="container marketing">
<hr class="featurette-divider">
<br />
<br />
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="row">
<div class="col-lg-2"></div>
<div class="col-lg-8">
<legend>Sams Teach Yourself C++ in One Hour a Day, 7/e (Paperback)</legend>
<span class="label label-info">作者:Siddhartha Rao 售價:9.0 折 $1,278</span>
<button type="button" class="btn btn-primary pull-right">列印清單</button>
<div class="table-responsive">
<table class="table table-bordered table-hover">
<thead>
<tr>
<th>#</th>
<th>名字</th>
<th>班級</th>
<th>應繳金額</th>
<th>實繳金額</th>
<th>繳款狀態</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>王曉明</td>
<td>I1A</td>
<td>1,024</td>
<td>1,050</td>
<td>待找錢</td>
</tr>
<tr>
<td>2</td>
<td>張小華</td>
<td>I1B</td>
<td>1,024</td>
<td>1,100</td>
<td>待找錢</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col-lg-2"></div>
</div>
<hr>
<footer>
<p>© Company 2013</p>
</footer>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>