-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
25 lines (23 loc) · 905 Bytes
/
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
<!DOCTYPE html>
<html data-ng-app="app">
<head>
<meta charset="UTF-8">
<title>Mask4</title>
<link rel="stylesheet" href="libs/bootstrap/css/bootstrap.css">
</head>
<body>
<div class="container">
<div class="jumbotron">
<input mask4="phone" type="text" class="form-control" ng-model="contato.telefone" placeholder="Digite o telefone:"> <br>
<input mask4="cpf" type="text" class="form-control" ng-model="contato.cpf" placeholder="Digite o CPF:"> <br>
<input mask4="date" type="text" class="form-control" ng-model="contato.data" placeholder="Digite a data:">
</div>
</div>
<script src="libs/angular/angular.min.js"></script>
<script src="src/mask4/mask4-module.js"></script>
<script src="src/mask4/mask4-config.js"></script>
<script src="src/mask4/mask4-provider.js"></script>
<script src="src/mask4/mask4-directive.js"></script>
<script src="src/app.js"></script>
</body>
</html>