forked from aidarbek/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (42 loc) · 1.18 KB
/
index.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
</script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.8.5/css/selectize.default.css">
<script src="node_modules/angular/angular.min.js">
</script>
<script src="node_modules/angular-route/angular-route.min.js">
</script>
<!--
<script src="node_modules/ng-sanitize/index.js">
</script>
-->
<link rel="stylesheet" href="node_modules/select.min.css">
<script src="node_modules/select.min.js">
</script>
<script src="app.js">
</script>
<script src="register.js">
</script>
<script src="route.js">
</script>
<style>
.editing-true
{
display: none;
color: red;
}
.show-field-false
{
display: none;
}
</style>
<body ng-app="routeApp">
<div ng-view>
</div>
</body>
</html>