blob: ddc1e10e2e14e03ba41246741c2d1f9be1cfe2ee [file] [log] [blame]
Matteo Scandolobf14f882016-06-02 10:01:34 -07001<!DOCTYPE html>
2<!--
3~ Copyright 2015 Open Networking Laboratory
4~
5~ Licensed under the Apache License, Version 2.0 (the "License");
6~ you may not use this file except in compliance with the License.
7~ You may obtain a copy of the License at
8~
9~ http://www.apache.org/licenses/LICENSE-2.0
10~
11~ Unless required by applicable law or agreed to in writing, software
12~ distributed under the License is distributed on an "AS IS" BASIS,
13~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14~ See the License for the specific language governing permissions and
15~ limitations under the License.
16~
17-->
18<html>
19<head>
20 <meta charset="utf-8">
21 <meta http-equiv="X-UA-Compatible" content="IE=edge">
22 <meta name="viewport" content="width=device-width, initial-scale=1">
23 <link rel="shortcut icon" href="imgs/bird.png">
24
25 <title>M-CORD Subscriber Portal</title>
26
27 <!-- bower:css -->
Matteo Scandolo2c2c8af2016-06-03 15:36:02 -070028 <link rel="stylesheet" href="bower_components/angular-chart.js/dist/angular-chart.css" />
Matteo Scandolobf14f882016-06-02 10:01:34 -070029 <!-- endbower -->
30
31 <!-- bower:js -->
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070032 <script src="bower_components/angular/angular.js"></script>
33 <script src="bower_components/angular-animate/angular-animate.js"></script>
34 <script src="bower_components/jquery/dist/jquery.js"></script>
35 <script src="bower_components/angular-resource/angular-resource.js"></script>
36 <script src="bower_components/angular-cookies/angular-cookies.js"></script>
37 <script src="bower_components/bootstrap-sass/assets/javascripts/bootstrap.js"></script>
38 <script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
39 <script src="bower_components/ngmap/build/scripts/ng-map.js"></script>
Matteo Scandolo2c2c8af2016-06-03 15:36:02 -070040 <script src="bower_components/Chart.js/Chart.js"></script>
41 <script src="bower_components/angular-chart.js/dist/angular-chart.js"></script>
42 <script src="bower_components/lodash/lodash.js"></script>
Matteo Scandolo06107602016-06-03 16:37:24 -070043 <script src="bower_components/angular-recursion/angular-recursion.js"></script>
Matteo Scandolobf14f882016-06-02 10:01:34 -070044 <!-- endbower -->
45
46 <link rel="stylesheet" href="style/main.css">
47
48 <script src="cord.js"></script>
Matteo Scandolo6b69f502016-06-03 10:42:00 -070049 <script src="dist/services/config.js"></script>
Matteo Scandolobf7c3662016-06-02 20:30:15 -070050 <script src="dist/services/users.js"></script>
Matteo Scandolo06107602016-06-03 16:37:24 -070051 <script src="dist/components/ngXosHelpers.js"></script>
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070052 <script src="dist/services/helpers.js"></script>
Matteo Scandolobf7c3662016-06-02 20:30:15 -070053 <script src="dist/services/rest/enodeb.js"></script>
Matteo Scandolo2c2c8af2016-06-03 15:36:02 -070054 <script src="dist/services/rest/profiles.js"></script>
Matteo Scandolobf7c3662016-06-02 20:30:15 -070055
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070056 <script src="dist/components/header/header.js"></script>
57 <script src="dist/components/footer/footer.js"></script>
Matteo Scandolobf7c3662016-06-02 20:30:15 -070058
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070059 <script src="dist/view/login/login.js"></script>
Matteo Scandolobf7c3662016-06-02 20:30:15 -070060 <script src="dist/view/home/e-node-map.js"></script>
61 <script src="dist/view/home/e-node-map-panel.js"></script>
Matteo Scandolo06107602016-06-03 16:37:24 -070062 <script src="dist/view/enode-list/enode-list.js"></script>
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070063 <script src="dist/view/services/services.js"></script>
64 <script src="http://maps.google.com/maps/api/js"></script>
Matteo Scandolobf14f882016-06-02 10:01:34 -070065
66</head>
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070067<body ng-app="mCord">
68<div class="app-wrapper">
Matteo Scandolobf14f882016-06-02 10:01:34 -070069
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070070 <header></header>
Matteo Scandolobf14f882016-06-02 10:01:34 -070071
Matteo Scandolo8cb844e2016-06-02 11:39:02 -070072 <div ui-view class="fade"></div>
Matteo Scandolobf14f882016-06-02 10:01:34 -070073
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070074 <footer></footer>
Matteo Scandolobf14f882016-06-02 10:01:34 -070075</div>
76
77<script type='text/javascript' id="__bs_script__">
78 //<![CDATA[
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070079 document.write('<script async src="http://HOST:3000/browser-sync/browser-sync-client.2.11.1.js"><\/script>'.replace('HOST', location.hostname));
Matteo Scandolobf14f882016-06-02 10:01:34 -070080 //]]>
81</script>
82</body>
83</html>