forked from auth0-blog/angular2-authentication-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 892 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
<!DOCTYPE html>
<html lang="">
<head>
<title>Angular2 demo by @Auth0</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<base href="/">
<!-- styles -->
<link rel="stylesheet" type="text/css" href="/node_modules/bootstrap/dist/css/bootstrap.css">
<!-- Angular 2 -->
<script type="text/javascript" src="/node_modules/whatwg-fetch/fetch.js"></script>
<script type="text/javascript" src="/node_modules/jwt-decode/build/jwt-decode.js"></script>
</head>
<body>
<auth-app>
Loading...
</auth-app>
<!-- Commmon files to be cached -->
<script src="/build/common.js"></script>
<!-- Angular2 files -->
<script src="/build/angular2.js"></script>
<!-- App script -->
<script src="/build/app.js"></script></body>
</html>