-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (32 loc) · 1.34 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
<!--
Author:krishna kanth
Author URL: http://krishnakondoju.blogspot.com
License: Creative Commons Attribution 3.0 Unported
-->
<!doctype html>
<html lang="en" ng-app="slmfreeman">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="../node_modules/angular-material/angular-material.css">
<title>Angular-auth</title>
<script src="//cdn.auth0.com/js/lock-9.2.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
</head>
<body>
<toolbar></toolbar>
<div layout-padding>
<ui-view></ui-view>
</div>
<script src="../node_modules/angular/angular.js"></script>
<script src="../node_modules/angular-animate/angular-animate.js"></script>
<script src="../node_modules/angular-aria/angular-aria.js"></script>
<script src="../node_modules/angular-material/angular-material.js"></script>
<script src="../node_modules/angular-jwt/dist/angular-jwt.js"></script>
<script src="../node_modules/angular-storage/dist/angular-storage.js"></script>
<script src="../node_modules/auth0-angular/build/auth0-angular.js"></script>
<script src="../node_modules/angular-ui-router/release/angular-ui-router.js"></script>
<script src="app.js"></script>
<script src="components/toolbar/toolbar.dir.js"></script>
<script src="components/profile/profile.ctr.js"></script>
</body>
</html>