-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (19 loc) · 904 Bytes
/
index.html
File metadata and controls
29 lines (19 loc) · 904 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
26
27
28
29
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<html data-ng-app="assignment">
<head>
<title>Test Assignment AngularJS</title>
<link type="text/css" rel="stylesheet" href='css/bootstrap.css' />
<script type="text/javascript" src="Scripts/angular.js"></script>
<script type="text/javascript" src="Scripts/jquery.min.js"></script>
<script type="text/javascript" src="Scripts/bootstrap.js"></script>
<script type="text/javascript" src="app/Application.js"></script>
<script type="text/javascript" src="app/models/ReportingModel.js"></script>
<script type="text/javascript" src="app/controllers/ReportingController.js"></script>
</head>
<body>
<!-- this is the default view (required) -->
<div ng-view></div>
</body>
</html>