Blame view

home.html 2.06 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"/>-->
6fd36f978   Andrew Buss   autocomplete is w...
7
    <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/0.9.0/angular-material.min.css">
742c7cd5f   Andrew Buss   'fixed' autocompl...
8

0b8d7cf4b   Andrew Buss   Moving towards a ...
9
10
    <link rel="stylesheet" href="flashy.css"/>
  </head>
4c1dc6dc9   Kevin Mach   first commit
11

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

80d1e57aa   Andrew Buss   materialized thin...
14
15
16
17
  <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...
18
  <div class="container" ui-view></div>
80d1e57aa   Andrew Buss   materialized thin...
19
20
21
22
23
  <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...
24
25
26
  <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
27

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

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