blob: 1c095634bd882951fccc151aaea1d2efed6c2c9c [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>
Bri Prebilic Cole8db16402015-05-18 13:50:31 -070026 <script src="tp/angular-animate.js"></script>
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070027 <script src="tp/angular-resource.js"></script>
Bri Prebilic Colee0311892015-05-15 11:27:15 -070028 <script src="tp/jquery-2.1.4.js"></script>
29
30 <script src="cord.js"></script>
Bri Prebilic Cole8db16402015-05-18 13:50:31 -070031 <link rel="stylesheet" href="app/view/common/common.css">
32
33 <script src="app/fw/mast/mast.js"></script>
34 <link rel="stylesheet" href="app/fw/mast/mast.css">
35 <script src="app/fw/foot/foot.js"></script>
36 <link rel="stylesheet" href="app/fw/foot/foot.css">
Bri Prebilic Colee0311892015-05-15 11:27:15 -070037
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070038 <script src="app/fw/nav/nav.js"></script>
39 <link rel="stylesheet" href="app/fw/nav/nav.css">
40
41 <script src="app/fw/icon/icon.js"></script>
42
Bri Prebilic Colee0311892015-05-15 11:27:15 -070043 <script src="app/view/login/login.js"></script>
Bri Prebilic Cole8db16402015-05-18 13:50:31 -070044 <link rel="stylesheet" href="app/view/login/login.css">
Bri Prebilic Colee0311892015-05-15 11:27:15 -070045
46 <script src="app/view/home/home.js"></script>
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070047 <link rel="stylesheet" href="app/view/home/home.css">
Bri Prebilic Colee0311892015-05-15 11:27:15 -070048
49 <script src="app/view/user/user.js"></script>
50
Bri Prebilic Cole8db16402015-05-18 13:50:31 -070051 <script src="app/view/bundle/bundle.js"></script>
Bri Prebilic Cole10570eb2015-05-20 16:23:52 -070052 <link rel="stylesheet" href="app/view/bundle/bundle.css">
53
Bri Prebilic Colee0311892015-05-15 11:27:15 -070054</head>
55<body ng-app="cordGui">
56<div id="frame" ng-controller="CordCtrl as cordCtrl"></div>
57
Bri Prebilic Cole8db16402015-05-18 13:50:31 -070058<mast></mast>
Bri Prebilic Colee0311892015-05-15 11:27:15 -070059<div id="view" ng-view></div>
Bri Prebilic Cole8db16402015-05-18 13:50:31 -070060<foot></foot>
Bri Prebilic Colee0311892015-05-15 11:27:15 -070061
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070062<svg id="icon-defs">
63 <defs>
64 <symbol id="checkMark" viewBox="0 0 10 10">
65 <path d="M2.6,4.5c0,0,0.7-0.4,1.2,0.3l1.0,1.8c0,0,2.7-5.4,2.8-5.7c
66 0,0,0.5-0.9,1.4-0.1c0,0,0.5,0.5,0,1.3S6.8,7.3,5.6,9.2c0,0-0.4,0.5
67 -1.2,0.1S2.2,5.4,2.2,5.4S2.2,4.7,2.6,4.5z"></path>
68 </symbol>
69 <symbol id="xMark" viewBox="0 0 10 10">
70 <path d="M9.0,7.2C8.2,6.9,7.4,6.1,6.7,5.2c0.4-0.5,0.7-0.8,0.8-1.0C
71 7.8,3.5,9.4,1.6,8.1,1.1C6.8,0.6,6.6,1.7,6.6,1.7C6.4,2.1,6.0,2.7,
72 5.4,3.4C4.9,2.5,4.5,1.9,4.5,1.9S3.8,0.2,2.9,0.7C1.9,1.1,2.3,2.3,
73 2.3,2.3c0.3,1.1,0.8,2.1,1.4,2.9C2.5,6.4,1.3,7.4,1.3,7.4S0.8,7.8,
74 0.8,8.1C0.9,8.3,0.9,9.6,2.4,9.1C3.1,8.8,4.1,7.9,5.1,7.0c1.3,1.3,
75 2.5,1.9,2.5,1.9s0.5,0.5,1.4-0.2C9.8,7.9,9.0,7.2,9.0,7.2z"></path>
76 </symbol>
77 </defs>
78</svg>
79
Simon Hunt4a5fc7b2015-05-14 14:17:45 -070080</body>
81</html>