rsanchez
2017-03-10 2762277c60db7df5ad3214b10a0dd93d4f2f1128
securis/src/main/webapp/index.html
....@@ -1,12 +1,12 @@
11 <!DOCTYPE html>
22 <html>
33 <head>
4
- <title>Angular QuickStart</title>
4
+ <title>SeCuris server</title>
55 <meta charset="UTF-8">
66 <meta name="viewport" content="width=device-width, initial-scale=1">
77 <base href="/">
8
- <link rel="stylesheet" href="styles.css">
9
-
8
+ <link rel="icon" href="assets/favicon.png" sizes="32x29" type="image/png">
9
+
1010 <!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.4.1/core.min.js"></script> -->
1111
1212 <!-- Polyfill(s) for older browsers -->
....@@ -15,6 +15,7 @@
1515
1616 <script src="node_modules/zone.js/dist/zone.js"></script>
1717 <script src="node_modules/systemjs/dist/system.src.js"></script>
18
+
1819
1920 <script src="systemjs.config.js"></script>
2021 <script>
....@@ -22,14 +23,21 @@
2223 </script>
2324
2425 <!-- Load the Covalent platform stylesheet -->
25
- <link href="https://unpkg.com/@covalent/core@1.0.0-beta.2/common/platform.css" rel="stylesheet">
26
+ <link href="assets/securis.css" rel="stylesheet">
27
+ <link href="node_modules/@covalent/core/common/platform.css" rel="stylesheet">
2628
2729 <!-- 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
+ <link href="node_modules/@covalent/core/theming/prebuilt/blue-orange.css" rel="stylesheet">
31
+ <link href="node_modules/ng2-toastr/bundles/ng2-toastr.min.css" rel="stylesheet" />
32
+ <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
3033 </head>
3134
3235 <body>
33
- <my-app>Loading AppComponent content here ...</my-app>
36
+ <app-home>
37
+ <div style="padding: 20%;text-align:center;">
38
+ <img src="assets/securis_logo.svg" width="100">
39
+ <div style="font-size: 0.8em;color: darkgrey;">SeCuris Loading...</div>
40
+ </div>
41
+ </app-home>
3442 </body>
3543 </html>