-
Notifications
You must be signed in to change notification settings - Fork 0
/
invoiceList.html
52 lines (52 loc) · 1.48 KB
/
invoiceList.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
<!DOCTYPE html>
<html>
<head>
<title>Harold's Furniture & Flooring - Flooring Sales - Invoice List</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="container">
<div class="row">
<div class="span3"> <!-- Sidebar Menu -->
<ul class="nav nav-list hf-sidenav">
<h3>Invoice List</h3>
<h4>Main Navigation</h4>
<li>
<a href="./newInvoice.html">
New Invoice
</a>
</li>
</ul>
</div>
<div class="span9">
<table class="table table-striped table-hover">
<thead>
<th>Customer</th>
<th>Invoice</th>
<th>Date</th>
</thead>
<tr>
<td>Jimmy Smith</td>
<td><a href="#">F 10001</a></td>
<td>6/15/13</td>
</tr>
<tr>
<td>Paul Smith</td>
<td><a href="#">F 10002</a></td>
<td>6/16/13</td>
</tr>
<tr>
<td>Robert Smith</td>
<td><a href="#">F 10003</a></td>
<td>6/17/13</td>
</tr>
</table>
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>