César Calvo
2017-03-15 abb9cc75e166c32cfa97244c497e6a69d14ea114
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
39
40
41
42
43
44
<!DOCTYPE html>
<html>
  <head>
    <title>SeCuris server</title>
    <base href="<%= pageContext.getServletContext().getContextPath() %>/">
    <meta charset="utf-8">
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="icon" href="assets/favicon.png" sizes="32x29" type="image/png">
    <base href="/">
<!--    <script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.4.1/core.min.js"></script> -->
    <!-- Polyfill(s) for older browsers -->
    <script src="node_modules/core-js/client/shim.min.js"></script>
    <script src="node_modules/hammerjs/hammer.min.js"></script>
    <script src="node_modules/zone.js/dist/zone.js"></script>
    <script src="node_modules/systemjs/dist/system.src.js"></script>
    <script src="systemjs.config.js"></script>
    <script>
      System.import('main').catch(function(err){ console.error(err); });
    </script>
    
    <!-- Load the Covalent platform stylesheet -->
    <link href="assets/securis.css" rel="stylesheet">
    <link href="node_modules/@covalent/core/common/platform.css" rel="stylesheet">
    <!-- Load the Covalent/Material prebuilt theme -->
    <link href="node_modules/@covalent/core/theming/prebuilt/blue-orange.css" rel="stylesheet">
    <link href="node_modules/ng2-toastr/bundles/ng2-toastr.min.css" rel="stylesheet" />
    <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  </head>
  <body>
    <app-home>
      <div style="padding: 20%;text-align:center;">
        <img src="assets/securis_logo.svg" width="100">
        <div style="font-size: 0.8em;color: darkgrey;">SeCuris Loading...</div>
      </div>
    </app-home>
  </body>
</html>