-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (28 loc) · 1.17 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
<!-- bootstrap -->
<html ng-app="app">
<head>
<title>Exchange App</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<base href="/"/>
<link rel="stylesheet" href="assets/styles/styles.css">
<script src="node_modules/angular/angular.min.js"></script>
<script src="node_modules/angular-ui-router/release/angular-ui-router.min.js"></script>
<script src="node_modules/moment/min/moment.min.js"></script>
<script src="app/app.module.js"></script>
<script src="app/app.routes.js"></script>
<script src="app/app.config.js"></script>
<script src="app/services/auth.service.js"></script>
<script src="app/services/account.service.js"></script>
<script src="app/services/transaction.service.js"></script>
<script src="app/auth/login.controller.js"></script>
<script src="app/exchange/summary.controller.js"></script>
<script src="app/exchange/exchange-form.controller.js"></script>
<script src="app/exchange/history.controller.js"></script>
<script src="app/components/transaction.directive.js"></script>
<script src="app/filters/from-now.filter.js"></script>
</head>
<body>
<ui-view></ui-view>
</body>
</html>