rename registration finished to confirmation
[angular-drzb] / app / index.html
1 <!doctype html>
2 <html lang="en" ng-app="myApp" xmlns:ng="http://angularjs.org">
3 <head>
4   <meta charset="utf-8">
5   <title>DRZB conference</title>
6
7   <!-- Twtitter bootstrap -->
8   <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css" />
9   <link rel="stylesheet" href="lib/bootstrap/css/bootstrap-responsive.min.css" />
10
11   <link rel="stylesheet" href="css/app.css"/>
12
13     <!--[if lte IE 8]>
14       <script>
15         document.createElement('ng-include');
16         document.createElement('ng-pluralize');
17         document.createElement('ng-view');
18  
19         // Optionally these for CSS
20         document.createElement('ng:include');
21         document.createElement('ng:pluralize');
22         document.createElement('ng:view');
23       </script>
24     <![endif]-->
25
26 </head>
27 <body>
28   <ul class="menu">
29     <li><a href="#/registration">registation</a></li>
30     <li><a href="#/list">list</a></li>
31   </ul>
32
33   <!--[if lt IE 8]>
34         <div style="color:red">
35                 Your browser is too old to support this application.
36                 <hr>
37                 Vaš web preglednik je prestar da bi podržao ovu aplikaciju.
38                 <hr>
39                 Download:
40                 <a href="http://www.google.com/search?q=download firefox">Firefox</a>
41                 <a href="http://www.google.com/search?q=download google chrome">Chrome</a>
42                 <a href="http://www.google.com/search?q=download ie8">Internet Explorer 8</a>
43         </div>
44   <![endif]-->
45
46
47   <div class="container" ng-view></div>
48
49   <div>Angular seed app: v<span app-version></span></div>
50
51   <!-- In production use:
52   <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.2/angular.min.js"></script>
53   -->
54   <script src="lib/angular/angular.js"></script>
55   <script src="lib/angular/angular-resource.js"></script>
56   <script src="js/app.js"></script>
57   <script src="js/services.js"></script>
58   <script src="js/controllers.js"></script>
59   <script src="js/filters.js"></script>
60   <script src="js/directives.js"></script>
61 </body>
62 </html>