| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/asap_sites/americansocietyforassetprotection.com_step1/ |
Upload File : |
<?php
session_start();
require_once('php/ua.php');
require_once('php/mysql.php');
if(empty($_SESSION['is_tracked'])) {
$db->query("INSERT INTO step1_tracking
(
ip_address
,ts
,clicked_vcard
,clicked_blueprintnow
,os
,device
,browser
) VALUES (
'".$db->clean($_SERVER['REMOTE_ADDR'])."'
,NOW()
,0
,0
,'".$db->clean($operatingSystem)."'
,'".$db->clean($device)."'
,'".$db->clean($browser)."'
)");
$_SESSION['is_tracked'] = $db->last_insert_id();
}
if(!empty($_POST['action'])) {
switch($_POST['action']) {
case 'vcard':
$db->query("UPDATE step1_tracking
SET clicked_vcard=1
WHERE id='".$db->clean($_SESSION['is_tracked'])."'");
break;
case 'blueprintnow':
$db->query("UPDATE step1_tracking
SET clicked_blueprintnow=1
WHERE id='".$db->clean($_SESSION['is_tracked'])."'");
break;
}
die();
}
?>
<!DOCTYPE html>
<html>
<head>
<title>American Society For Asset Protection</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="font-awesome/6.0/css/all.css">
<style type="text/css">
html,body {
color: #184884;
padding:0px;
margin:0px;
}
.container {
margin:20px auto;
width:800px;
}
.step {
margin:20px 0px;
}
.step_img {
width:260px;
display:inline-block;
vertical-align:middle;
}
.step_img img {
width:100%;
}
.step_title {
font-size:44px;
display:inline-block;
vertical-align:middle;
margin:0px 40px;
}
.step_complete {
font-size:85px;
display:inline-block;
vertical-align:middle;
}
.step_body {
font-size:18px;
}
.step_body p {
padding:0px 40px;
}
#contact_card_link {
font-size:28px;
}
#blueprintnow_link {
font-size:24px;
}
@media only screen and (max-width: 800px) {
.container {
width:90%;
}
}
@media only screen and (max-width: 500px) {
.step_img {
width:90px;
}
.step_title {
font-size:21px;
margin: 0px 13px;
}
.step_complete {
font-size:45px;
}
.step_body {
font-size:16px;
}
.step_body img {
width:70%;
}
#contact_card_link {
font-size:20px;
}
#blueprintnow_link {
font-size:18px;
}
}
</style>
<script type="text/javascript" src="jquery-2.1.1.min.js"></script>
<script type="text/javascript">
function clicked_vcard() {
var str="action=vcard";
$.ajax({
url:"index.php",
cache: false,
type: "POST",
data: str,
success: function(results) {
},
error: function(jqXHR, textStatus, errorThrown) {
}
});
$('#step2_title').html('<div class="step_img"><img src="Step 2.png" /></div>' +
'<div class="step_title">Completed</div>' +
'<div class="step_complete"><i class="far fa-circle-check"></i></div>');
}
function clicked_blueprintnow() {
var str="action=blueprintnow";
$.ajax({
url:"index.php",
cache: false,
type: "POST",
data: str,
success: function(results) {
},
error: function(jqXHR, textStatus, errorThrown) {
}
});
}
</script>
</head>
<body>
<div class="container">
<center><a href="https://americansocietyforassetprotection.com"><img src="https://www.americansocietyforassetprotection.com/img/logo.png" style="max-width:75%;" /></a></center>
<div class="step">
<div class="step_img"><img src="Step 1.png" /></div>
<div class="step_title">Completed</div>
<div class="step_complete"><i class="far fa-circle-check"></i></div>
</div>
<div class="step">
<div id="step2_title">
<a href="American Society for Asset Protection.vcf" target="_blank" onclick="clicked_vcard(); return true;" style="display:block;color:#184884;text-decoration:none;">
<div class="step_img"><img src="Step 2.png" /></div>
<div class="step_title">Save Contact Information</div>
</a>
</div>
<div class="step_body">
<p>To ensure you always receive our emails, Please save our contact information in your phone by clicking the link below.</p>
<center>
<a href="American Society for Asset Protection.vcf" target="_blank" id="contact_card_link" onclick="clicked_vcard(); return true;">
<img src="Contact Card Icon.png" /><br />
Save Contact Information
</a>
</center>
</div>
</div>
<div class="step">
<div>
<a href="http://blueprintnow.com" target="_blank" onclick="clicked_blueprintnow(); return true;" style="display:block;color:#184884;text-decoration:none;">
<div class="step_img"><img src="Step 3.png" /></div>
<div class="step_title">Complete Questionnaire</div>
</a>
</div>
<div class="step_body">
<p>The attorneys will customize your asset protection plan. To begin the process, please fill out the online questionnaire at the link below.</p>
<center>
<a href="http://blueprintnow.com" target="_blank" id="blueprintnow_link" onclick="clicked_blueprintnow(); return true;">
BluePrintNow.com
</a>
</center>
<p>Once submitted, you can schedule your consultation with the attorney.</p>
</div>
</div>
</div>
</body>
</html>