OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
knoblyExpressLandingPage
/
cream
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/23/2024 04:31:31 AM
rwxr-xr-x
📄
.browserslistrc
208 bytes
09/23/2024 04:31:33 AM
rw-r--r--
📄
.gitignore
42 bytes
09/23/2024 04:31:33 AM
rw-r--r--
📄
.htaccess
803 bytes
09/23/2024 04:31:33 AM
rw-r--r--
📄
.htaccess.swp
12 KB
09/23/2024 04:31:33 AM
rw-r--r--
📄
.travis.yml
199 bytes
09/23/2024 04:31:34 AM
rw-r--r--
📁
.well-known
-
09/23/2024 04:31:45 AM
rwxr-xr-x
📁
API
-
09/23/2024 04:31:47 AM
rwxr-xr-x
📄
about.html
3.05 KB
09/23/2024 04:31:34 AM
rw-r--r--
📄
activate.php
2.56 KB
09/23/2024 04:31:34 AM
rw-r--r--
📄
article.php
17.24 KB
09/23/2024 04:31:35 AM
rw-r--r--
📁
arvindfacebook
-
09/23/2024 04:31:50 AM
rwxr-xr-x
📁
audio
-
09/23/2024 04:39:55 AM
rwxr-xr-x
📄
back-dashboard.php
8.33 KB
09/23/2024 04:31:35 AM
rw-r--r--
📄
barticle.php
16.58 KB
09/23/2024 04:31:35 AM
rw-r--r--
📄
bin_article.php
6.62 KB
09/23/2024 04:31:36 AM
rw-r--r--
📄
bnewsletter.php
1.33 KB
09/23/2024 04:31:36 AM
rw-r--r--
📄
bview.php
14.07 KB
09/23/2024 04:31:36 AM
rw-r--r--
📄
contact.html
2.79 KB
09/23/2024 04:31:37 AM
rw-r--r--
📄
dashboard.php
12.06 KB
09/23/2024 04:31:37 AM
rw-r--r--
📄
down.html
1.23 KB
09/23/2024 04:31:37 AM
rw-r--r--
📄
fb_access.php
855 bytes
09/23/2024 04:31:38 AM
rw-r--r--
📄
gen2_1.php
45.17 KB
09/23/2024 04:31:38 AM
rw-r--r--
📄
geo_location.php
3.69 KB
09/23/2024 04:31:39 AM
rw-r--r--
📄
index.html
14 KB
09/23/2024 04:31:39 AM
rw-r--r--
📄
info.php
14 bytes
09/23/2024 04:31:39 AM
rw-r--r--
📄
more.php
7.36 KB
09/23/2024 04:31:40 AM
rw-r--r--
📄
newsletter.php
1.33 KB
09/23/2024 04:31:40 AM
rw-r--r--
📄
old1dashboard.php
8.4 KB
09/23/2024 04:31:40 AM
rw-r--r--
📄
olddashboard.php
11.58 KB
09/23/2024 04:31:40 AM
rw-r--r--
📄
privacy.html
9.99 KB
09/23/2024 04:31:41 AM
rw-r--r--
📄
refund.html
7.34 KB
09/23/2024 04:31:41 AM
rw-r--r--
📄
reset.html
3.01 KB
09/23/2024 04:31:41 AM
rw-r--r--
📄
showcase.php
7.93 KB
09/23/2024 04:31:41 AM
rw-r--r--
📄
signup.html
8.08 KB
09/23/2024 04:31:42 AM
rw-r--r--
📄
splash.html
1.11 KB
09/23/2024 04:31:42 AM
rw-r--r--
📄
test.email.php
2.5 KB
09/23/2024 04:31:42 AM
rw-r--r--
📄
test.php
969 bytes
09/23/2024 04:31:42 AM
rw-r--r--
📄
usage.html
30.88 KB
09/23/2024 04:31:43 AM
rw-r--r--
📄
view.php
12.99 KB
09/23/2024 04:31:43 AM
rw-r--r--
📄
zview.php
16.09 KB
09/23/2024 04:31:43 AM
rw-r--r--
Editing: more.php
Close
<!doctype html> <? include 'inc/config.php'; $id = isset($_GET["id"]) ? $_GET["id"] : ''; if ($id <> '') { $sql = "SELECT * FROM user_collection WHERE id=$id"; $result = mysqli_query($db, $sql); $row = $result->fetch_assoc(); $numRows = mysqli_num_rows($result); if ($numRows == 0) die(); $serverName = $_SERVER['SERVER_NAME']; $collectionURL = $row['url']; $collectionUserId = $row['user_id']; $collectionShareUserId = $row['share_user_id']; $collectionTitle = $row['title']; $collectionDesc = $row['description']; $isMandatoryCompany = $row['is_mandatory_company']; $isMandatoryEmail = $row['is_mandatory_email']; $isMandatoryMobile = $row['is_mandatory_mobile']; $collectionPublisher = substr($collectionURL, strpos($collectionURL, ".") + 1); $collectionPublisher = ucfirst(strtok($collectionPublisher, '.')); if ($collectionPublisher == '') $collectionPublisher = 'Cream'; $collectionDate = date('d M, Y', strtotime($row['date_added'])); $readMoreResponse = $row['read_more_response']; if ($collectionShareUserId <> '') { $sql = "SELECT full_name,company,website,news_title,news_logo FROM user WHERE id=$collectionShareUserId"; } else { $sql = "SELECT full_name,company,website,news_title,news_logo FROM user WHERE id=$collectionUserId"; } $result = mysqli_query($db, $sql); $row = mysqli_fetch_assoc($result); $user = $row['full_name']; $companyName = $row['company']; $website = $row['website']; $newsTitle = $row['news_title']; $newsLogo = $row['news_logo']; ?> <html lang="en"> <head> <title><?=$collectionTitle?></title> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous" /> <link rel="stylesheet" href="inc/fontawesome/css/all.min.css" /> <link rel="stylesheet" href="inc/style.css" /> <script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script> </head> <body> <form id="frmLead"> <div class="container mb-3 pb-3" style="position:relative"> <header class="blog-header py-3 border-bottom"> <div class="row flex-nowrap justify-content-between align-items-center"> <div class="col-8 pt-1"> <a class="text-muted" href="<?=$website?>"><img class="mx-auto" width="256px" src="https://<?=$serverName?>/data/logos/<?=$newsLogo?>" /></a> <h6 class="mt-1" style="color:#9e9e9e"><?=$user?> | <?=$companyName?></h6> </div> <div class="col-4 text-right"> </div> </div> </header> <div class="row mt-3 mb-5"> <div class="panelContent col-12 col-md pb-3"> <h4><?=$collectionTitle?></h4> <div class="pt-2 pb-5"> You have requested for more information.<br> Please fill the below form and we will get back to you.<br> </div> <div class="form-group row"> <label for="leadName" class="col-sm-3 col-form-label">Full Name<sup class="txtRed"><big>*</big></sup></label> <div class="col-sm-7"> <input type="text" class="form-control" id="leadName" name="leadName" maxlength="100" /> </div> </div> <div class="form-group row"> <label for="leadCompany" class="col-sm-3 col-form-label">Company/Institution<? if ($isMandatoryCompany) { ?><sup class="txtRed"><big>*</big></sup><? } ?></label> <div class="col-sm-7"> <input type="text" class="form-control" id="leadCompany" name="leadCompany" maxlength="100" /> </div> </div> <div class="form-group row"> <label for="leadEmail" class="col-sm-3 col-form-label">Email<? if ($isMandatoryEmail) { ?><sup class="txtRed"><big>*</big></sup><? } ?></label> <div class="col-sm-7"> <input type="text" class="form-control" id="leadEmail" name="leadEmail" maxlength="100" /> </div> </div> <div class="form-group row"> <label for="leadMobile" class="col-sm-3 col-form-label">Mobile<? if ($isMandatoryMobile) { ?><sup class="txtRed"><big>*</big></sup><? } ?></label> <div class="col-sm-7"> <input type="text" class="form-control" id="leadMobile" name="leadMobile" maxlength="50" /> </div> </div> <center> <section> <div id="contentLoader" style="" class="mt-0 hide"> <div class="lds-ring"> <div></div> <div></div> <div></div> <div></div> </div> </div> </section> <div id="panelStatus" class="py-3"></div> <input type="hidden" id="leadCollectionId" name="leadCollectionId" value="<?=$id?>" /> <input type="hidden" id="act" name="act" value="createLead" /> <button type="button" id="btnSubmit" class="btn btn-primary px-3 py-2" onclick="chkLead()">Submit</button> </center> </div> <div style="width:300px;"> </div> </div> </div> <div class="container fixed-bottom pb-3" style="background-color:#fff"> <div class="row mt-4 no-gutters" style="border-top:1px solid #eb5e31"> <div class="col mt-2 text-right"> <small>Powered by</small> <a href="https://www.knoblycream.com/" target="_blank"><img src="/grfx/logo.png" width="100"></a> </div> </div> </div> <script type="text/javascript"> var chkFilterEmail = /\w{1,}[@][\w\-]{1,}([.]([\w\-]{1,})){1,3}$/; function chkLead() { var leadName = $('#leadName').val(); var leadCompany = $('#leadCompany').val(); var leadEmail = $('#leadEmail').val(); var leadMobile = $('#leadMobile').val(); if (leadName == '') { $('#panelStatus').html('<div class="text-danger animate__animated animate__flash">Error: Full Name not entered!</div>'); return false; } <? if ($isMandatoryCompany) { ?> if (leadCompany == '') { $('#panelStatus').html('<div class="text-danger animate__animated animate__flash">Error: Company not entered!</div>'); return false; } <? } ?> <? if ($isMandatoryEmail) { ?> if (leadEmail == '') { $('#panelStatus').html('<div class="text-danger animate__animated animate__flash">Error: Email not entered!</div>'); return false; } <? } ?> <? if ($isMandatoryMobile) { ?> if (leadMobile == '') { $('#panelStatus').html('<div class="text-danger animate__animated animate__flash">Error: Mobile not entered!</div>'); return false; } <? } ?> if (leadEmail != '') { if (!(chkFilterEmail.test(leadEmail))) { $('#panelStatus').html('<div class="text-danger animate__animated animate__flash">Error: Email is not valid!</div>'); return false; } } $('#panelStatus').html(''); $('#btnSubmit').hide(); $('#contentLoader').show(); $.ajax({ url: 'process/get.section.general.php', method: 'POST', data: $('#frmLead').serializeArray() }) .done(function(res) { $('#contentLoader').hide(); if (res == 'OK') { <? if ($readMoreResponse <> '') { ?> alert('Your information has been submitted'); window.location.href = '<?=$readMoreResponse?>'; <? } else { ?> $('#panelStatus').html('Your information has been submitted'); <? } ?> } else { $('#btnSubmit').show(); $('#panelStatus').html('<div class="text-danger animate__animated animate__flash">Error: Information could not be submitted!</div>'); } }); return false; } </script> </form> </body> </html> <? } ?>