-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.html
38 lines (31 loc) · 945 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Auth0 - Angular2 Sample</title>
</head>
<body>
<app>Loading...</app>
</body>
<!-- ES6-related imports -->
<script src="/node_modules/es6-shim/es6-shim.min.js"></script>
<script src="/node_modules/systemjs/dist/system-csp-production.js"></script>
<!-- Auth0 Lock script and AngularJS module -->
<script src="//cdn.auth0.com/js/lock-7.9.min.js"></script>
<script>
//configure system loader
System.config({
defaultJSExtensions: true,
map: {
"angular2-jwt": "node_modules/angular2-jwt"
}
});
</script>
<script src="/node_modules/angular2/bundles/angular2.min.js"></script>
<script src="/node_modules/angular2/bundles/http.js"></script>
<script src="/node_modules/angular2/bundles/router.dev.js"></script>
<script>
//bootstrap the Angular2 application
System.import('dist/app').catch(console.log.bind(console));
</script>
</html>