-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex10-directives.html
More file actions
77 lines (62 loc) · 2.97 KB
/
index10-directives.html
File metadata and controls
77 lines (62 loc) · 2.97 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap-theme.css">
<link rel="stylesheet" href="node_modules/angular-toastr/dist/angular-toastr.css">
<link rel="stylesheet" href="node_modules/angular-ui-grid/ui-grid.css">
<!-- Font Awesome-->
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.css">
<!-- Angular Material-->
<link rel="stylesheet" href="node_modules/angular-material/angular-material.css">
<!-- Angular Loading Bar-->
<link rel="stylesheet" href="node_modules/angular-loading-bar/build/loading-bar.css">
<link rel="stylesheet" href="app/css/pd-apps.css">
<!-- Imports internos -->
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/angular-ui-router/release/angular-ui-router.js"></script>
<script src="node_modules/oclazyload/dist/ocLazyLoad.js"></script>
<script src="node_modules/angular-messages/angular-messages.js"></script>
<script src="node_modules/angular-animate/angular-animate.js"></script>
<script src="node_modules/angular-aria/angular-aria.js"></script>
<script src="node_modules/angular-toastr/dist/angular-toastr.js"></script>
<script src="node_modules/angular-toastr/dist/angular-toastr.tpls.js"></script>
<script src="node_modules/angular-ui-grid/ui-grid.js"></script>
<script src="node_modules/angular-material/angular-material.js"></script>
<script src="node_modules/angular-loading-bar/build/loading-bar.js"></script>
<!-- Imports externos -->
<script src="app/config/pd-app.module.js"></script>
<script src="app/config/pd-rotas.config.js"></script>
<script src="app/controller/index10.controller.js"></script>
<script src="app/services/pd-alert.services.js"></script>
<script src="app/filters/pd-maiusculas.filter.js"></script>
<script src="arquitetura/directives/pd-hello-world/pd-hello-world.directive.js"></script>
<script src="arquitetura/directives/pd-input-text/pd-input-text.directives.js"></script>
<script src="arquitetura/directives/pd-select/pd-select.js"></script>
</head>
<body ng-app="pdCurso" class="container" ng-cloak ng-controller="Index10Controller as vm">
<form>
<div>
<pd-hello-world></pd-hello-world>
<div pd-hello-world></div>
<hr>
<pd-input-text
label="Nome"
ng-model="vm.pessoa.nome"
ng-required="true">
</pd-input-text>
<pd-select label="Sexo"
ng-model="vm.pessoa.sexo"
ng-required="true"
provider="vm.sexo">
</pd-select>
</div>
</form>
{{vm.pessoa}}
</body>
</html>