-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·31 lines (28 loc) · 1.25 KB
/
index.html
File metadata and controls
executable file
·31 lines (28 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en" ng-app="app">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<title>Angular | John Papa</title>
</head>
<body ng-controller="mainController as mainCtrl">
<div class="container">
<ui-view></ui-view>
</div>
<script src="scripts/angular.js"></script>
<script src="scripts/angular-ui-router.min.js"></script>
<script src="app/app.js"></script>
<script src="app/login/login.controller.js"></script>
<script src="app/login/login.service.js"></script>
<script src="app/home/home.js"></script>
<script src="app/home/home.controller.js"></script>
<script src="app/contacts/contacts.js"></script>
<script src="app/contacts/contacts.controller.js"></script>
<script src="app/common/services/common.services.js"></script>
<script src="app/logout/logout.controller.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>