This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 2.27 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
<!DOCTYPE html>
<html lang="es_ES">
<head>
<title>Mascara tarjeta</title>
<!-- Bootstrap v4.3.1 CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
</head>
<body>
<section id="cover" class="py-5">
<div id="container" class="container">
<div class="row">
<div class="col-sm-10 offset-sm-1 text-center">
<h1 class="display-4">Aplicar mascara de tarjeta con jQuery</h1>
<form class="py-5">
<div class="form-row">
<div class="form-group col-md-6">
<label for="numero-tarjeta">Número de Tarjeta</label>
<input type="text" class="form-control" id="numero-tarjeta" maxlength="16" placeholder="************9999" onkeydown="setTimeout('mascaraTarjeta(\'numero-tarjeta\',\'cuenta\',false);',10)" autocomplete="off">
<input type="hidden" name="cuenta" id="cuenta">
</div>
<div class="form-group col-md-6">
<label for="confirmar-numero-tarjeta">Confirmar Tarjeta</label>
<input type="text" class="form-control" id="confirmar-numero-tarjeta" maxlength="16" placeholder="************9999" onkeydown="setTimeout('mascaraTarjeta(\'confirmar-numero-tarjeta\',\'confirmar-cuenta\',false);',10)" autocomplete="off">
<input type="hidden" name="confirmar-cuenta" id="confirmar-cuenta">
</div>
<div class="form-group col-md-12">
<h2 class="text-muted" id="resultado"></h2>
</div>
</div>
</form>
</div>
</div>
</section>
<!-- jQuery v3.4.1 JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Popper v1.14.7 JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<!-- Bootstrap v4.3.1 JS -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<!-- Validar Tarjeta JS-->
<script src="assets/js/validar.js"></script>
</body>
</html>