Файловый менеджер - Редактировать - /home/d46091/udyogaadhaar.net/blog-post/images/698279/Payment.php.tar
Назад
home/d46091/udyogaadhaar.net/Payment.php 0000644 00000014251 15026514741 0013677 0 ustar 00 <?php include_once('config.php'); ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); if (isset($_GET['cmpnMail']) && !empty($_GET['cmpnMail'])) { $date = date('d-m-Y H:i:s'); $order_id = base64_decode($_GET['cmpnMail']); $sql = 'SELECT * FROM msme_form WHERE order_id = "'.$order_id.'"'; $result = $conn->query($sql); $row = $result->fetch_assoc(); $applicant_name = $row['applicant_name']; $mobile_number= $row['mobile_number']; $email_id= $row['email_id']; $total_amount = $row['total_amount']; $data = [ 'recipient_email' => strtolower($email_id), 'status' => 'open' ]; $apiUrl = 'https://crm11.techlounge.co.in/api/mail-data-logs-update.php'; $ch = curl_init($apiUrl); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); $response = curl_exec($ch); curl_close($ch); }else{ $applicant_name = ''; $mobile_number= ''; $email_id=''; header('Location:./'); exit(); } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Payment Pages</title> <meta name="description" content="Udyog Aadhaar Registration Online Application Form. Quick Udyog Aadhar Online Registration platform. MSME Udyog Aadhar Free Registration Process."> <meta name="yandex-verification" content="de6c3e2c532ec8bd" /> <link rel="icon" href="./assets/img/flag.png" type="image/gif" sizes="16x16" alt="Udyog Aadhaar Registration Online - MSME Registration Online Form"> <link rel="stylesheet" href="fontawesome/css/all.css"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap" rel="stylesheet"> <style> body { background: #EEE; padding: 0; margin: 0; font-family: 'Manjari', sans-serif; overflow-x: hidden; } h1{ text-transform: uppercase; padding-top: 20px; } .btn-custom { background: #115399; color: #fff; } .btn.focus, .btn:focus { box-shadow: none; } .btn-custom:hover { color: #fff; background: #115399; } .container { box-shadow: 1px 0 10px 15px rgba(0, 0, 0, .3); background: linear-gradient(to bottom, #115399 0%, #115399 50%, #000000 50%, #ddd 50%, #ddd 100%); padding: 10px 0 15px 0px; } .center-content { display: block; margin: 20px auto; width: 40%; } .float-right .form-control { border-radius: 0px; width: 35% !important; } .center-content .form-control { outline: none; border: none; background: none; border-bottom: 1px solid #ddd; border-radius: 0px !important; } .center-content .form-control:focus, .center-content .form-control:hover { border: none; margin: 0 auto; background: none; box-shadow: none; border-bottom: 1px solid #AAB7B8; } .form-group { margin-top: 25px; } @media(max-width: 992px){ h2{ text-align: center; } .center-content{ width: 60%; } } @media(max-width: 768px){ h2{ text-align: center; } .center-content{ width: 60%; } .form-inline{ display: block; text-align: center; float: none !important; } } @media(max-width: 575px){ .pl-5{ padding-left: 0 !important; } .center-content{ width: 80%; } .float-right .form-control{ width: 100% !important; margin-top: 15px; } .float-right .form-control:nth-child(2){ margin-bottom: 15px; } .container{ background: linear-gradient(to bottom, #3b5997 0%, #3b5997 60%, #000000 50%, #ddd 52%, #ddd 100%); max-width: 80%; } } @media(max-width: 425px){ h3,h2{ font-size: 1.5rem; } h1{ font-size: 2rem; } h2{ margin: 0; } } .form-group { margin-top: 30px !important; } h1 { text-transform: uppercase; padding-top: 10px; margin-top: -2rem; font-family: monospace; font-size: 24px; font-weight: bold; } h4 { text-transform: uppercase; padding-top: 10px; font-family: sans-serif; font-size: 15px; font-weight: 650; } .btn{ border-radius:0; } </style> <div class="container mt-5 mb-5"> <div class="row"> <div class="col-lg-12"> <div class="text-center text-white"> <bR> <h3>PAYMENT PAGE</h3> </div> </div> </div> <div class="row bg-white center-content"> <img src="" style="padding: 15px;"><div class="col-lg-12 p-4"> <h1>REGISTRATION FEE PAYMENT</h1> <hr> <h4>PAYMENT FOR</h4> <p>MSME / UDYAM REGISTRATION FEE</p> <h4>AMOUNT PAYABLE</h4> <p style="color:#115399;font-weight:bold">₹ 2700</p> <form action="payu-email/payu-submit.php"method="post"> <div class="form-group mt-0"> <input type="text" class="form-control" placeholder="Name"name="applicant_name" value=<?php echo $applicant_name;?> readonly> </div> <div class="form-group"> <input type="email"name="email_id" class="form-control" placeholder="Email"value=<?php echo $email_id;?> readonly> </div> <div class="form-group"> <input type="tel"name="mobile_number"maxlength="10"minlength="10" class="form-control" placeholder="Mobile" value=<?php echo $mobile_number;?> readonly> </div> <input type="hidden"name="form_id"value="paYvIaemAilLinK"> <input type="hidden"name="form_name"value="Udyam registration"> <input type="hidden"name="order_id"value="<?php echo $order_id; ?>"> <button type="submit" class="btn btn-custom">MAKE PAYMENT</button> </form> </div> <img src="" style="width: 50%;margin: auto;display: block;padding: 10px;"> </div> </div> </div>