| <!DOCTYPE html> |
| <!-- |
| ~ Copyright 2015 Open Networking Laboratory |
| ~ |
| ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| ~ you may not use this file except in compliance with the License. |
| ~ You may obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, software |
| ~ distributed under the License is distributed on an "AS IS" BASIS, |
| ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| ~ See the License for the specific language governing permissions and |
| ~ limitations under the License. |
| ~ |
| --> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| <meta name="viewport" content="width=device-width, initial-scale=1"> |
| <link rel="shortcut icon" href="imgs/bird.png"> |
| |
| <title>M-CORD Subscriber Portal</title> |
| |
| <!-- bower:css --> |
| <!-- endbower --> |
| |
| <!-- bower:js --> |
| <script src='bower_components/angular/angular.js'></script> |
| <script src='bower_components/angular-animate/angular-animate.js'></script> |
| <script src='bower_components/jquery/dist/jquery.js'></script> |
| <script src='bower_components/angular-resource/angular-resource.js'></script> |
| <script src='bower_components/angular-route/angular-route.js'></script> |
| <script src='bower_components/angular-cookies/angular-cookies.js'></script> |
| <script src='bower_components/bootstrap-sass/assets/javascripts/bootstrap.js'></script> |
| <script src='bower_components/angular-ui-router/release/angular-ui-router.js'></script> |
| <!-- endbower --> |
| |
| <link rel="stylesheet" href="style/main.css"> |
| |
| <script src="cord.js"></script> |
| <script src="app/fw/services/rest.js"></script> |
| <script src="app/fw/services/helpers.js"></script> |
| <script src="app/fw/mast/mast.js"></script> |
| <script src="app/fw/foot/foot.js"></script> |
| <script src="app/fw/icon/icon.js"></script> |
| <script src="app/view/login/login.js"></script> |
| <script src="app/view/home/home.js"></script> |
| <script src="app/view/user/user.js"></script> |
| <script src="app/view/bundle/bundle.js"></script> |
| |
| </head> |
| <body ng-app="cordGui"> |
| <div class="app-wrapper" ng-controller="CordCtrl as cordCtrl"> |
| |
| <mast></mast> |
| |
| <div ui-view class="fade"></div> |
| |
| <foot></foot> |
| </div> |
| |
| <script type='text/javascript' id="__bs_script__"> |
| //<![CDATA[ |
| document.write("<script async src='http://HOST:3000/browser-sync/browser-sync-client.2.11.1.js'><\/script>".replace("HOST", location.hostname)); |
| //]]> |
| </script> |
| </body> |
| </html> |