blob: 8f4c1ec1c1d84c39c18c44d79e966548ba60217d [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 -->
28 <!-- endbower -->
29
30 <!-- bower:js -->
31 <script src='bower_components/angular/angular.js'></script>
32 <script src='bower_components/angular-animate/angular-animate.js'></script>
33 <script src='bower_components/jquery/dist/jquery.js'></script>
34 <script src='bower_components/angular-resource/angular-resource.js'></script>
35 <script src='bower_components/angular-route/angular-route.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>
Matteo Scandolo8cb844e2016-06-02 11:39:02 -070038 <script src='bower_components/angular-ui-router/release/angular-ui-router.js'></script>
Matteo Scandolobf14f882016-06-02 10:01:34 -070039 <!-- endbower -->
40
41 <link rel="stylesheet" href="style/main.css">
42
43 <script src="cord.js"></script>
44 <script src="app/fw/services/rest.js"></script>
45 <script src="app/fw/services/helpers.js"></script>
46 <script src="app/fw/mast/mast.js"></script>
47 <script src="app/fw/foot/foot.js"></script>
48 <script src="app/fw/icon/icon.js"></script>
49 <script src="app/view/login/login.js"></script>
50 <script src="app/view/home/home.js"></script>
51 <script src="app/view/user/user.js"></script>
52 <script src="app/view/bundle/bundle.js"></script>
53
54</head>
55<body ng-app="cordGui">
56<div class="app-wrapper" ng-controller="CordCtrl as cordCtrl">
57
58 <mast></mast>
59
Matteo Scandolo8cb844e2016-06-02 11:39:02 -070060 <div ui-view class="fade"></div>
Matteo Scandolobf14f882016-06-02 10:01:34 -070061
62 <foot></foot>
Matteo Scandolobf14f882016-06-02 10:01:34 -070063</div>
64
65<script type='text/javascript' id="__bs_script__">
66 //<![CDATA[
67 document.write("<script async src='http://HOST:3000/browser-sync/browser-sync-client.2.11.1.js'><\/script>".replace("HOST", location.hostname));
68 //]]>
69</script>
70</body>
71</html>