-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
52 lines (45 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>RequireJS Sample</title>
<link rel="stylesheet" href="styles/bootstrap.css">
<script src="scripts/require-jquery.js" data-main="scripts/main"></script>
</head>
<body>
<div class="container">
<div class="page-header">
<h1>Customers
<small>A RequireJS version</small>
</h1>
</div>
<div class="row">
<div class="span8">
<table class="table-bordered table" id="customer-table">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Action</th>
</tr>
</thead>
<tbody id="customer-rows">
</tbody>
</table>
</div>
</div>
</div>
<div class="modal hide fade" id="customer-modal">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Customer</h3>
</div>
<div class="modal-body" id="modal-body">
</div>
<div class="modal-footer">
<a href="#" class="btn btn-success save-customer">Save</a>
<a href="#" class="btn" data-dismiss="modal">Close</a>
</div>
</div>
</body>
</html>