rsanchez
2017-03-01 f81088473cbc7cd9a348768e3ac300e973ce3583
securis/src/main/webapp/index.html
....@@ -1,5 +1,35 @@
1
+<!DOCTYPE html>
12 <html>
2
- <body>
3
- <h1>SeCuris Server</h1>
4
- </body>
5
-</html>
3
+ <head>
4
+ <title>Angular QuickStart</title>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1">
7
+ <base href="/">
8
+ <link rel="stylesheet" href="styles.css">
9
+
10
+<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.4.1/core.min.js"></script> -->
11
+
12
+ <!-- Polyfill(s) for older browsers -->
13
+ <script src="node_modules/core-js/client/shim.min.js"></script>
14
+ <script src="node_modules/hammerjs/hammer.min.js"></script>
15
+
16
+ <script src="node_modules/zone.js/dist/zone.js"></script>
17
+ <script src="node_modules/systemjs/dist/system.src.js"></script>
18
+
19
+ <script src="systemjs.config.js"></script>
20
+ <script>
21
+ System.import('main').catch(function(err){ console.error(err); });
22
+ </script>
23
+
24
+ <!-- Load the Covalent platform stylesheet -->
25
+ <link href="https://unpkg.com/@covalent/core@1.0.0-beta.2/common/platform.css" rel="stylesheet">
26
+
27
+ <!-- Load the Covalent/Material prebuilt theme -->
28
+ <link href="https://unpkg.com/@covalent/core@1.0.0-beta.2/theming/prebuilt/blue-orange.css" rel="stylesheet">
29
+
30
+ </head>
31
+
32
+ <body>
33
+ <my-app>Loading AppComponent content here ...</my-app>
34
+ </body>
35
+</html>