blob: 25c7da57963e732bc10171b836d0d532ae44d979 [file] [log] [blame]
Simon Hunt4a5fc7b2015-05-14 14:17:45 -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
22 <title>CORD Subscriber Portal</title>
Simon Hunt4a5fc7b2015-05-14 14:17:45 -070023
Bri Prebilic Colee0311892015-05-15 11:27:15 -070024 <script src="tp/angular.js"></script>
25 <script src="tp/angular-route.js"></script>
26 <script src="tp/jquery-2.1.4.js"></script>
27
28 <script src="cord.js"></script>
29 <link rel="stylesheet" href="common.css">
30
31 <script src="app/view/login/login.js"></script>
32
33 <script src="app/view/home/home.js"></script>
34
35 <script src="app/view/user/user.js"></script>
36
37 <script src="app/view/sub/sub.js"></script>
38</head>
39<body ng-app="cordGui">
40<div id="frame" ng-controller="CordCtrl as cordCtrl"></div>
41
42<div id="view" ng-view></div>
43
Simon Hunt4a5fc7b2015-05-14 14:17:45 -070044</body>
45</html>