Blame view

home.html 2 KB
4c1dc6dc9   Kevin Mach   first commit
1
2
  <!DOCTYPE html>
  <html ng-app="flashy">
0b8d7cf4b   Andrew Buss   Moving towards a ...
3
4
  <base href="/app/">
  <head>
80d1e57aa   Andrew Buss   materialized thin...
5
6
    <link type="text/css" rel="stylesheet" href="styles/materialize.min.css" media="screen,projection"/>
    <!--<link rel="stylesheet" href="styles/bootstrap-3.3.4-dist/css/bootstrap.css"/>-->
742c7cd5f   Andrew Buss   'fixed' autocompl...
7
    <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/0.8.3/angular-material.min.css">
0b8d7cf4b   Andrew Buss   Moving towards a ...
8
9
    <link rel="stylesheet" href="flashy.css"/>
  </head>
4c1dc6dc9   Kevin Mach   first commit
10

80d1e57aa   Andrew Buss   materialized thin...
11
  <body ng-controller="RootController">
e1f309a87   Rohan Rangray   Implemented the D...
12

80d1e57aa   Andrew Buss   materialized thin...
13
14
15
16
  <ul id="nav" class="side-nav fixed">
    <li class="bold"><a ui-sref="login">Login</a></li>
    <li class="bold"><a ui-sref="addclass">Add Class</a></li>
  </ul>
e086f832f   Andrew Buss   Added a few views...
17
  <div class="container" ui-view></div>
80d1e57aa   Andrew Buss   materialized thin...
18
19
20
21
22
  <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.js"></script>
  <script src="//cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.14/angular-ui-router.js"></script>
  <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-cookies.js"></script>
  <script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
  <script type="text/javascript" src="scripts/materialize.min.js"></script>
a2c4eb4fd   Melody   Added Angular Mat...
23
24
25
  <script src="https://ajax.googleapis.com/ajax/libs/angular_material/0.9.0/angular-material.min.js"></script>
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-animate.min.js"></script>
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-aria.min.js"></script>
72759f12a   Masud Rahman   Fixed home.html
26

0b8d7cf4b   Andrew Buss   Moving towards a ...
27
  <script src="config.js"></script>
72759f12a   Masud Rahman   Fixed home.html
28
29
  
  <script src="scripts/FeedController.js"></script>
80d1e57aa   Andrew Buss   materialized thin...
30
  <script src="scripts/RootController.js"></script>
72759f12a   Masud Rahman   Fixed home.html
31
32
  <script src="scripts/LoginController.js"></script>
  <script src="scripts/LogoutController.js"></script>
3c4c48c96   Kevin Mach   removed errors fo...
33
  <script src="scripts/DeckController.js"></script>
4fc1728b4   Tetranoir   added requestpass...
34
  <script src="scripts/RequestResetController.js"></script>
bbba33088   Andrew Buss   Added addclass st...
35
  <script src="scripts/ClassAddController.js"></script>
742c7cd5f   Andrew Buss   'fixed' autocompl...
36
  <!--<script src="scripts/StudyController.js"></script>-->
80d1e57aa   Andrew Buss   materialized thin...
37
38
39
  <script src="scripts/UserService.js"></script>
  <script src="//ghiden.github.io/angucomplete-alt/js/libs/angucomplete-alt.js"></script>
  <!--<script src="scripts/bootstrap.js"></script>-->
4c1dc6dc9   Kevin Mach   first commit
40

0b8d7cf4b   Andrew Buss   Moving towards a ...
41
  </body>
e18daa4a6   Rachel Lee   Formatting home a...
42
  </html>