-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpf.php
executable file
·23 lines (21 loc) · 982 Bytes
/
cpf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Validador de CPF em PHP</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.11/jquery.mask.min.js"></script>
<link rel="stylesheet" href="css/cpf.css">
<script type="text/javascript" src="js/cpf.js"></script>
</head>
<body>
<div class="form-group" id="tela">
<input id="cpf" class="form-control cpf-mask" type="text" name="cpf" placeholder="CPF a Ser Verificado">
<input type="button" id="btnVerificar" class="btn btn-primary" value="Verificar">
<br>
</div>
</body>
</html>