| .. | .. |
|---|
| 1 | 1 | <!DOCTYPE html> |
|---|
| 2 | 2 | <html> |
|---|
| 3 | 3 | <head> |
|---|
| 4 | | - <title>Angular QuickStart</title> |
|---|
| 4 | + <title>SeCuris server</title> |
|---|
| 5 | 5 | <meta charset="UTF-8"> |
|---|
| 6 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
|---|
| 7 | 7 | <base href="/"> |
|---|
| 8 | | - <link rel="stylesheet" href="styles.css"> |
|---|
| 9 | | - |
|---|
| 8 | + <link rel="icon" href="assets/favicon.png" sizes="32x29" type="image/png"> |
|---|
| 9 | + |
|---|
| 10 | 10 | <!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.4.1/core.min.js"></script> --> |
|---|
| 11 | 11 | |
|---|
| 12 | 12 | <!-- Polyfill(s) for older browsers --> |
|---|
| .. | .. |
|---|
| 15 | 15 | |
|---|
| 16 | 16 | <script src="node_modules/zone.js/dist/zone.js"></script> |
|---|
| 17 | 17 | <script src="node_modules/systemjs/dist/system.src.js"></script> |
|---|
| 18 | + |
|---|
| 18 | 19 | |
|---|
| 19 | 20 | <script src="systemjs.config.js"></script> |
|---|
| 20 | 21 | <script> |
|---|
| .. | .. |
|---|
| 22 | 23 | </script> |
|---|
| 23 | 24 | |
|---|
| 24 | 25 | <!-- 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"> |
|---|
| 26 | 28 | |
|---|
| 27 | 29 | <!-- 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"> |
|---|
| 30 | 33 | </head> |
|---|
| 31 | 34 | |
|---|
| 32 | 35 | <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> |
|---|
| 34 | 42 | </body> |
|---|
| 35 | 43 | </html> |
|---|