-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (19 loc) · 763 Bytes
/
index.html
File metadata and controls
19 lines (19 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<link rel="stylesheet" type="text/css" href="lib/bootstrap.css">
<link rel="stylesheet" type="text/css" href="lib/common.css">
<script src="lib/jquery.min.js"></script>
<script src="lib/angularjs.min.js"></script>
<script src="lib/angular_routes.js"></script>
<script src="lib/angular-cookies.js"></script>
<script src="lib/common.js"></script>
<script src="app.js"></script>
<script src="service/sessionService.js"></script>
<script src="service/authService.js"></script>
<script src="modules/login/login.js"></script>
<script src="modules/dashboard/dashboard.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<body ng-app="myApp">
<div ng-view></div>
</body>
</html>