forked from arifkhri/dingo_angularjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (21 loc) · 780 Bytes
/
index.html
File metadata and controls
25 lines (21 loc) · 780 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Angular-Laravel Authentication</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css">
</head>
<script src="node_modules/angular/angular.js"></script>
<body ng-app="authApp">
<div class="container">
<div ui-view></div>
</div>
</body>
<!-- Application Dependencies -->
<script src="node_modules/angular-ui-router/release/angular-ui-router.js"></script>
<script src="node_modules/satellizer/dist/satellizer.js"></script>
<!-- Application Scripts -->
<script src="js/app.js"></script>
<script src="js/authController.js"></script>
<script src="js/userController.js"></script>
</html>