Showing source for: https://pacesettertechnology.com/
Duration: 0.624958s
Server: Apache

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta content="IE=edge" http-equiv="X-UA-Compatible">
        <meta content="width=device-width, initial-scale=1" name="viewport">
        <meta content="Branding and Website by http://Ambidustrio.us" name="author">
        <link href="/img/icons/favicon.ico" rel="icon">
        <link href="/img/icons/favicon.ico" rel="icon" type="img/png">
        <link href="/img/icons/apple-touch-icon.png" rel="apple-touch-icon">
        <link href="/img/icons/apple-touch-icon-72x72.png" rel="apple-touch-icon" sizes="72x72">
        <link href="/img/icons/apple-touch-icon-114x114.png" rel="apple-touch-icon" sizes="114x114">
        <title>
   Club Management Software | Pacesetter
        </title>
        <meta content="Member experience technology that transforms your club." name="description">
        <link href="/css/bootstrap.min.css" rel="stylesheet">
        <link href="/js/fresco/css/fresco/fresco.css" rel="stylesheet" type="text/css">
        <link href="/js/slick/slick.css" rel="stylesheet" type="text/css">
        <link href="/js/slick/slick-theme.css" rel="stylesheet" type="text/css">
        <link href="/css/style.css?ts=1714755070" rel="stylesheet">
        <link href="/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
        <script crossorigin="anonymous" src="https://kit.fontawesome.com/56b82ea28c.js">
        </script>
        <script src="https://use.typekit.net/tcq2qqb.js">
        </script>
        <script>
            try {
                Typekit.load({
                    async: true
                });
            } catch (e) {
            
            }
        </script>
        <!--[if lt IE 9]>
                        <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
                        <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
                <![endif]-->
        <meta content="FMbUE_t8VOGhSQILQRihl5StICon8DlesgO6ussy7Ak" name="google-site-verification">
        <script src="https://code.createjs.com/createjs-2015.11.26.min.js">
        </script>
        <script src="/img/pacesetter.js">
        </script>
        <script>
            var canvas, stage, exportRoot, anim_container, dom_overlay_container, fnStartAnimation;
            function init() {
                canvas = document.getElementById("canvas");
                anim_container = document.getElementById("animation_container");
                dom_overlay_container = document.getElementById("dom_overlay_container");
                var comp = AdobeAn.getComposition("6477E58090234129822FF2ED98B78D47");
                var lib = comp.getLibrary();
                handleComplete({
                }, comp);
            }
            function handleComplete(evt, comp) {
                var lib = comp.getLibrary();
                var ss = comp.getSpriteSheet();
                exportRoot = new lib.pacesetter();
                stage = new lib.Stage(canvas);
                fnStartAnimation = function() {
                    stage.addChild(exportRoot);
                    createjs.Ticker.setFPS(lib.properties.fps);
                    createjs.Ticker.addEventListener("tick", stage);
                    stage.addEventListener("tick", handleTick);
                    function getProjectionMatrix(container, totalDepth) {
                        var focalLength = 528.25;
                        var projectionCenter = {
                            x: lib.properties.width / 2,
                            y: lib.properties.height / 2
                        };
                        var scale = (totalDepth + focalLength) / focalLength;
                        var scaleMat = new createjs.Matrix2D();
                        scaleMat.a = 1 / scale;
                        scaleMat.d = 1 / scale;
                        var projMat = new createjs.Matrix2D();
                        projMat.tx = -projectionCenter.x;
                        projMat.ty = -projectionCenter.y;
                        projMat = projMat.prependMatrix(scaleMat);
                        projMat.tx += projectionCenter.x;
                        projMat.ty += projectionCenter.y;
                        return projMat;
                    }
                    function handleTick(event) {
                        var cameraInstance = exportRoot.___camera___instance;
                        if (cameraInstance !== undefined && cameraInstance.pinToObject !== undefined) {
                            cameraInstance.x = cameraInstance.pinToObject.x + cameraInstance.pinToObject.pinOffsetX;
                            cameraInstance.y = cameraInstance.pinToObject.y + cameraInstance.pinToObject.pinOffsetY;
                            if (cameraInstance.pinToObject.parent !== undefined && cameraInstance.pinToObject.parent.depth !== undefined) cameraInstance.depth = cameraInstance.pinToObject.parent.depth + cameraInstance.pinToObject.pinOffsetZ;
                        }
                        applyLayerZDepth(exportRoot);
                    }
                    function applyLayerZDepth(parent) {
                        var cameraInstance = parent.___camera___instance;
                        var focalLength = 528.25;
                        var projectionCenter = {
                            'x': 0,
                            'y': 0
                        };
                        if (parent === exportRoot) {
                            var stageCenter = {
                                'x': lib.properties.width / 2,
                                'y': lib.properties.height / 2
                            };
                            projectionCenter.x = stageCenter.x;
                            projectionCenter.y = stageCenter.y;
                        }
                        for (child in parent.children) {
                            var layerObj = parent.children[child];
                            if (layerObj == cameraInstance) continue;
                            applyLayerZDepth(layerObj, cameraInstance);
                            if (layerObj.layerDepth === undefined) continue;
                            if (layerObj.currentFrame != layerObj.parent.currentFrame) {
                                layerObj.gotoAndPlay(layerObj.parent.currentFrame);
                            }
                            var matToApply = new createjs.Matrix2D();
                            var cameraMat = new createjs.Matrix2D();
                            var totalDepth = layerObj.layerDepth ? layerObj.layerDepth : 0;
                            var cameraDepth = 0;
                            if (cameraInstance && !layerObj.isAttachedToCamera) {
                                var mat = cameraInstance.getMatrix();
                                mat.tx -= projectionCenter.x;
                                mat.ty -= projectionCenter.y;
                                cameraMat = mat.invert();
                                cameraMat.prependTransform(projectionCenter.x, projectionCenter.y, 1, 1, 0, 0, 0, 0, 0);
                                cameraMat.appendTransform(-projectionCenter.x, -projectionCenter.y, 1, 1, 0, 0, 0, 0, 0);
                                if (cameraInstance.depth) cameraDepth = cameraInstance.depth;
                            }
                            if (layerObj.depth) {
                                totalDepth = layerObj.depth;
                            }
                            totalDepth -= cameraDepth;
                            if (totalDepth < -focalLength) {
                                matToApply.a = 0;
                                matToApply.d = 0;
                            } else {
                                if (layerObj.layerDepth) {
                                    var sizeLockedMat = getProjectionMatrix(parent, layerObj.layerDepth);
                                    if (sizeLockedMat) {
                                        sizeLockedMat.invert();
                                        matToApply.prependMatrix(sizeLockedMat);
                                    }
                                }
                                matToApply.prependMatrix(cameraMat);
                                var projMat = getProjectionMatrix(parent, totalDepth);
                                if (projMat) {
                                    matToApply.prependMatrix(projMat);
                                }
                            }
                            layerObj.transformMatrix = matToApply;
                        }
                    }
                };
                function makeResponsive(isResp, respDim, isScale, scaleType) {
                    var lastW, lastH, lastS = 1;
                    window.addEventListener('resize', resizeCanvas);
                    resizeCanvas();
                    function resizeCanvas() {
                        var w = lib.properties.width, h = lib.properties.height;
                        var iw = window.innerWidth, ih = window.innerHeight;
                        var pRatio = window.devicePixelRatio || 1, xRatio = iw / w, yRatio = ih / h, sRatio = 1;
                        if (isResp) {
                            if ((respDim == 'width' && lastW == iw) || (respDim == 'height' && lastH == ih)) {
                                sRatio = lastS;
                            } else if (!isScale) {
                                if (iw < w || ih < h) sRatio = Math.min(xRatio, yRatio);
                            } else if (scaleType == 1) {
                                sRatio = Math.min(xRatio, yRatio);
                            } else if (scaleType == 2) {
                                sRatio = Math.max(xRatio, yRatio);
                            }
                        }
                        canvas.width = w * pRatio * sRatio;
                        canvas.height = h * pRatio * sRatio;
                        canvas.style.width = dom_overlay_container.style.width = anim_container.style.width = w * sRatio + 'px';
                        canvas.style.height = anim_container.style.height = dom_overlay_container.style.height = h * sRatio + 'px';
                        stage.scaleX = pRatio * sRatio;
                        stage.scaleY = pRatio * sRatio;
                        lastW = iw;
                        lastH = ih;
                        lastS = sRatio;
                        stage.tickOnUpdate = false;
                        stage.update();
                        stage.tickOnUpdate = true;
                    }
                }
                makeResponsive(true, 'both', false, 1);
                AdobeAn.compositionLoaded(lib.properties.id);
                fnStartAnimation();
            }
        </script>
    </head>
    <body onload="init();">
        <div id="wrap">
            <nav class="navbar navbar-fixed-top navbar-inverse">
                <div class="container">
                    <div class="navbar-header">
                        <button aria-controls="navbar" aria-expanded="false" class="navbar-toggle collapsed" data-target="#navbar" data-toggle="collapse" type="button">
                            <span class="sr-only">
                                Toggle navigation
                            </span>
                            <span class="icon-bar">
                            </span>
                            <span class="icon-bar">
                            </span>
                            <span class="icon-bar">
                            </span>
                        </button>
                        <a class="navbar-brand new" href="/">
                            <img src="/img/pacesetter_logo_header.png">
                        </a>
                    </div>
                    <div class="collapse navbar-collapse" id="navbar">
                        <ul class="nav navbar-nav">
                            <li class="here first">
                                <a href="/">
                                    Home
                                </a>
                            </li>
                            <li>
                                <a href="/features/">
                                    Features
                                </a>
                            </li>
                            <li>
                                <a href="/about-pacesetter/">
                                    Our Story
                                </a>
                            </li>
                            <li>
                                <a href="/blog/">
                                    Blog
                                </a>
                            </li>
                            <li>
                                <a href="/videos/">
                                    Videos
                                </a>
                            </li>
                            <li class="last">
                                <a href="/careers/">
                                    Careers
                                </a>
                            </li>
                            <li>
                                <a class="visible-xs btn btn-primary btn-lg" data-target="#myModalNorm" data-toggle="modal" href="#" style="color:#fff; padding:10px; margin:20px">
                                    Get Started
                                </a>
                            </li>
                        </ul>
                        <a class="btn btn-primary btn-sm hidden-xs pull-right" data-target="#myModalNorm" data-toggle="modal" href="#">
                            Get Started
                        </a>
                    </div>
                    <!-- /.nav-collapse -->
                </div>
                <!-- /.container -->
            </nav>
            <!-- /.navbar -->
            <div class="c-wrapper new-home-intro" style="background-image:url(/images/uploads/new_header_image.jpg)">
                <div class="c-wrapper mobile-fade">
                </div>
                <div class="container">
                    <div class="row">
                        <div class="col-xs-10 col-xs-offset-1 col-sm-7 col-sm-offset-0">
                            <h1>
        Next Level Experiences Start Now
                            </h1>
                            <p class="subhead">
                                Transformational Tech for the Exceptional Member Experience
                            </p>
                            <p class="playbutton">
                                <a href="#new-video">
                                    <span class="play">
                                    </span>
                                    <span class="cta">
                                        Watch the Video
                                    </span>
                                </a>
                            </p>
                        </div>
                    </div>
                </div>
            </div>
            <div class="c-wrapper home-feature-intro-new" style="background-image:url(/images/uploads/home_features_bg.jpg)">
                <div class="container">
                    <div class="row">
                        <div class="col-xs-8 col-xs-offset-2 col-sm-4 col-sm-offset-1 hf-image eq" style="background-image:url(/images/uploads/feature_phone2.png)">
                            <div class="logoanimation" style="width:150px; height:150px; position: absolute; left:50%; top:50%; margin-left:-65px; margin-top:-25px;">
                                <div id="animation_container" style="background-color:rgba(255, 255, 255, 0.00); width:125px; height:125px">
                                    <canvas height="125" id="canvas" style="position: absolute; display: block; background-color:rgba(255, 255, 255, 0.00);" width="125">
                                    </canvas>
                                    <div id="dom_overlay_container" style="pointer-events:none; overflow:hidden; width:125px; height:125px; position: absolute; left: 0px; top: 0px; display: block;">
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-xs-10 col-xs-offset-1 col-sm-6 col-sm-offset-0 hf-text eq">
                            <p>
                                We Partner Together &amp; Custom Develop Your App
                            </p>
                            <ul>
                                <li>
                                    Beautiful design
                                </li>
                                <li>
                                    Integrated with your systems and your data
                                </li>
                                <li>
                                    Custom experiences
                                </li>
                                <li>
                                    Onsite launch training
                                </li>
                                <li>
                                    Proactively innovating new features
                                </li>
                                <li>
                                    Breakneck responsiveness
                                </li>
                                <li>
                                    No cookie cutters allowed
                                </li>
                            </ul>
                            <p>
                                If you created an exceptional club, why would you accept a mediocre app?
                            </p>
                            <p>
                                <br>
                                <a class="btn btn-primary btn-md" href="https://pacesettertechnology.com/features/">
                                    View Features
                                </a>
                            </p>
                        </div>
                    </div>
                </div>
            </div>
            <div class="c-wrapper sixsensePlayer">
                <div class="container">
                    <div class="row">
                        <div class="col-xs-12 col-sm-1 text-center">
                            <a class="ssIcon fresco" data-fresco-options="vimeo: { autoplay: 1 }" href="https://vimeo.com/551908229">
                                <i class="far fa-play-circle">
                                </i>
                            </a>
                        </div>
                        <div class="col-xs-10 col-xs-offset-1 col-sm-offset-0 col-sm-10 ssText">
                            <p>
                                <strong>
                                    Introducing 6th Sense
                                </strong>
                                <br>
                                The absolute best technology to create a next level member experience.
                                <a class="fresco" data-fresco-options="vimeo: { autoplay: 1 }" href="https://vimeo.com/551908229">
                                    Learn More
                                </a>
                            </p>
                        </div>
                    </div>
                </div>
            </div>
            <div class="c-wrapper logos">
                <div class="container">
                    <div class="row slick" style="padding-top:30px; padding-bottom:30px;">
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/union.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/shadycanyon.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/2.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/atlantic.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/a.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/39.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/belair.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/bellerive.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/bridges.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/cliffs.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/core.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/dc.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/eagle.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/hideaway.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/medinah.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/mountaintop.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/olympic.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/quaker.png" width="300">
                        </div>
                        <div style="margin-right:15px; margin-left:15px;">
                            <img alt="" class="scale" height="300" max-height="90" max-width="90" src="/images/uploads/customer_logos/twin_dolphin.png" width="300">
                        </div>
                    </div>
                </div>
            </div>
            <div class="c-wrapper home-benefits">
                <div class="container">
                    <div class="row">
                        <div class="col-xs-12">
                            <h2>
                                Delivering the expected is boring. You can do better.
                            </h2>
                            <p class="subhead">
                                <em>
                                    (We&rsquo;ll help you every step of the way)
                                </em>
                            </p>
                        </div>
                    </div>
                    <div class="col-xs-10 col-xs-offset-1 new-video" id="new-video">
                        <div class="plyr__video-embed" id="player">
                            <iframe allow="autoplay" allowfullscreen="" allowtransparency="" src="https://player.vimeo.com/video/309338134?loop=false&amp;byline=false&amp;portrait=false&amp;title=false&amp;speed=true&amp;transparent=0&amp;gesture=media">
                            </iframe>
                        </div>
                    </div>
                    <div class="row benefit-row">
                        <div class="col-xs-12 col-sm-4 benefit eq">
                            <p class="text-center">
                                <img alt="" height="100" src="/images/made/images/uploads/icon_treatment_100_100.png" width="100">
                            </p>
                            <h3>
                                Hyper Personalized Experience
                            </h3>
                            <p>
                                Name recognition software and a member directory put a face with a name, enabling tailored experiences and stronger member connections.
                            </p>
                        </div>
                        <div class="col-xs-12 col-sm-4 benefit eq">
                            <p class="text-center">
                                <img alt="" height="100" src="/images/made/images/uploads/icon_results_100_100.png" width="100">
                            </p>
                            <h3>
                                Location Driven Insight
                            </h3>
                            <p>
                                Beacon technology reveals the club in zones, preparing you with names and preferences before you enter the room or approach a table.
                            </p>
                        </div>
                        <div class="col-xs-12 col-sm-4 benefit eq">
                            <p class="text-center">
                                <img alt="" height="100" src="/images/made/images/uploads/icon_members_100_100.png" width="100">
                            </p>
                            <h3>
                                Personalized Communication
                            </h3>
                            <p>
                                Push notifications ensure you&rsquo;re reaching the right audience at the right time, matching events to their interests with a one click RSVP.
                            </p>
                        </div>
                    </div>
                    <div class="row">
                        <div class="col-xs-12">
                            <p style="text-align:center;">
                                <a class="btn btn-default btn-md light" data-target="#myModalNorm" data-toggle="modal" href="#">
                                    <span class="glyphicon glyphicon-send">
                                    </span>
                                    &nbsp;&nbsp;Contact Pacesetter
                                </a>
                                <a class="btn btn-default btn-md light" href="/features/">
                                    <span class="glyphicon glyphicon-book">
                                    </span>
                                    &nbsp;&nbsp;Find Out More
                                </a>
                            </p>
                        </div>
                    </div>
                </div>
            </div>
            <div class="c-wrapper">
                <div class="container">
                    <div class="row postlist">
                        <div class="col-xs-12">
                            <h6>
                                Pacesetter Ideas
                            </h6>
                        </div>
                        <div class="posts">
                            <div class="col-xs-12 col-sm-4 post">
                                <a href="https://pacesettertechnology.com/blog/ai-tools-for-general-managers">
                                    <img alt="" class="scale" height="300" src="/images/made/images/uploads/Screen_Shot_2024-03-04_at_4.09.33_PM_400_300_c1.png" width="400">
                                </a>
                                <div class="postdate">
                                    <span>
                                        04
                                    </span>
                                    Mar
                                </div>
                                <h3>
                                    <a href="https://pacesettertechnology.com/blog/ai-tools-for-general-managers">
                                        AI Tools for General Managers
                                    </a>
                                </h3>
                                <p>
                                    Here are the tools George and Jeff presented at the 2024 CMAA conference!...
                                </p>
                            </div>
                            <div class="col-xs-12 col-sm-4 post">
                                <a href="https://pacesettertechnology.com/blog/great-tech-safe-return">
                                    <img alt="" class="scale" height="300" src="/images/made/images/uploads/blog_images/Dining_Room_Face_Masks_400_300_c1.jpg" width="400">
                                </a>
                                <div class="postdate">
                                    <span>
                                        17
                                    </span>
                                    Jun
                                </div>
                                <h3>
                                    <a href="https://pacesettertechnology.com/blog/great-tech-safe-return">
                                        Great Tech = Safe Return
                                    </a>
                                </h3>
                                <p>
                                    Balancing safety with revenue generation must also be at the forefront of club managers&rsquo; minds. Some experts believe waves of social distancing will be needed before life can resume as &ldquo;normal&rdquo;. That being said, club managers must consider how technology will allow them resume operations in the most normal fashion. ...
                                </p>
                            </div>
                            <div class="col-xs-12 col-sm-4 post">
                                <a href="https://pacesettertechnology.com/blog/how-technology-will-disrupt-the-tradeshow-industry">
                                    <img alt="" class="scale" height="300" src="/images/made/images/uploads/blog_images/Tradeshows_400_300_c1.jpg" width="400">
                                </a>
                                <div class="postdate">
                                    <span>
                                        29
                                    </span>
                                    Jan
                                </div>
                                <h3>
                                    <a href="https://pacesettertechnology.com/blog/how-technology-will-disrupt-the-tradeshow-industry">
                                        How Technology Will Disrupt The Tradeshow Industry
                                    </a>
                                </h3>
                                <p>
                                    Given that tradeshows feature hundreds of companies, individual exhibitors face uphill battles to attract and keep the attention of attendees. Like it has for other industries, technology provides exhibitors competitive advantages to successfully disrupt a marketplace ripe for re-engaging its consumers....
                                </p>
                            </div>
                        </div>
                    </div>
                    <div class="row">
                        <div class="col-xs-12">
                            <p style="text-align:center;">
                                <a class="btn btn-default btn-sm" href="/blog/">
                                    View More
                                </a>
                            </p>
                        </div>
                    </div>
                </div>
            </div>
            <footer class="c-wrapper">
                <div class="container">
                    <div class="row">
                        <div class="col-sm-6">
                            <p>
                                <img src="/img/pacesetter_logo.png" width="200">
                            </p>
                            <p>
                                We build your club's mobile app powered by our technology. Your experience, your operation and your reputation will never be the same.
                                <br>
                                <br>
                                Ponte Vedra Beach, FL &middot; 904.478.1660
                            </p>
                        </div>
                        <div class="col-sm-6">
                            <hr style="width:100%; float:left;">
                            <div class="col-sm-12 text-left newsletter">
                                <form action="https://pacesettertechnology.us8.list-manage.com/subscribe/post?u=8fe19e12ad7f7f4f70b71dbf6&amp;id=9a37676360" class="validate" id="mc-embedded-subscribe-form" method="post" name="mc-embedded-subscribe-form" target="_blank">
                                    <label>
                                        Sign up for the Private Edge
                                        <input class="form-control email-address" id="mce-EMAIL" name="EMAIL" placeholder="Email" style="float:left; width:70%;" type="email" value="">
                                        <input class="btn btn-primary btn-sm" style="float:left; width:30%;" type="submit" value="Subscribe">
                                    </label>
                                </form>
                            </div>
                            <hr style="width:100%; float:left;">
                            <div class="col-sm-6" style="clear:both;">
                                <h5>
                                    Pacesetter Technology
                                </h5>
                                <ul>
                                    <li>
                                        <a href="/features/">
                                            Features
                                        </a>
                                    </li>
                                    <li>
                                        <a href="/about-pacesetter/">
                                            Our Story
                                        </a>
                                    </li>
                                    <li>
                                        <a href="/blog/">
                                            Blog
                                        </a>
                                    </li>
                                    <li>
                                        <a href="/careers/">
                                            Careers
                                        </a>
                                    </li>
                                    <li>
                                        <a href="/privacy/">
                                            Privacy Policy
                                        </a>
                                    </li>
                                </ul>
                            </div>
                        </div>
                        <!--/.container-->
                    </div>
                </div>
            </footer>
        </div>
        <div aria-hidden="true" aria-labelledby="myModalLabel" class="modal fade" id="myModalNorm" role="dialog" tabindex="-1">
            <div class="modal-dialog">
                <div class="modal-content">
                    <!-- Modal Header -->
                    <div class="modal-header">
                        <button class="close" data-dismiss="modal" type="button">
                            <span aria-hidden="true">
        &times;
                            </span>
                            <span class="sr-only">
                                Close
                            </span>
                        </button>
                        <h4 class="modal-title" id="myModalLabel">
                            Contact Pacesetter
                        </h4>
                    </div>
                    <!-- Modal Body -->
                    <div class="modal-body">
                        <p class="form-intro">
       Simply fill out the form to schedule a quick demo or call us at 910-315-9449.
                        </p>
                        <form method="POST">
                            <input name="formReturnUrl" type="hidden" value="DQyDU62UG7sGzgDUA6qnAQ0XlIdNmYWrjThIyhX374buczNSCKhZOqgEpFSuqlxHZH5hOzHLYn6HMDK34Nhbcw==">
                            <input name="csrf_token" type="hidden" value="0a77b2ef5f2a84682ffd44345cd017c2bc193124">
                            <input name="formHash" type="hidden" value="8oWe9jZpP_0dc8_33e40913f402a07d73fd56d92a6226287f0c5efb663515fe81228">
                            <a id="8a06e8-form-8oWe9jZpP_0dc8_33e40913f402a07d73fd56d92a6226287f0c5efb663515fe81228">
                            </a>
                            <div aria-hidden="true" style="position: absolute !important; width: 0 !important; height: 0 !important; overflow: hidden !important;">
                                <label for="freeform_form_handle_3ded90">
                                    Leave this field blank
                                </label>
                                <input id="freeform_form_handle_3ded90" name="freeform_form_handle_3ded90" type="text" value="7c3320">
                            </div>
                            <div class="snap" style="position: absolute !important; height: 0 !important;  overflow: hidden !important;">
                                <input id="snap_psiilqDtu" name="snap_psiilqDtu" type="text" value="rOXSswdDmxRST">
                            </div>
                            <script type="text/javascript">
                                document.getElementById("snap_psiilqDtu").value = "pbsWlAUZnPTDY";
                            </script>
                            <div class="form-group">
                                <label class="col-xs-12 col-sm-6" for="exampleInputEmail1">
                                    Name*
                                    <input class="form-control" id="exampleInputName" name="name" placeholder="First Last" type="text">
                                </label>
                                <label class="col-xs-12 col-sm-6" for="exampleInputEmail1">
                                    Title
                                    <input class="form-control" id="exampleInputTitle" name="title" placeholder="General Manager" type="text">
                                </label>
                                <label class="col-xs-12 col-sm-6" for="exampleInputEmail1">
                                    Email address*
                                    <input class="form-control" id="exampleInputEmail" name="email" placeholder="[email protected]" type="email">
                                </label>
                                <label class="col-xs-12 col-sm-6" for="exampleInputEmail1">
                                    Phone
                                    <input class="form-control" id="exampleInputPhone" name="phone" placeholder="(555) 555-5555" type="phone">
                                </label>
                                <label class="col-xs-12 col-sm-12" for="exampleInputEmail1">
                                    Club Name
                                    <input class="form-control" id="exampleInputClub" name="club_name" placeholder="" type="text">
                                </label>
                                <label class="col-xs-12 col-sm-12" for="exampleInputmessage">
                                    Message*
                                    <textarea class="form-control" id="message" name="user_message" placeholder="Tell us a little more about your needs"></textarea>
                                </label>
                            </div>
                            <div class="form-group">
                                <div class="col-xs-12" style="margin-bottom:30px;">
                                    <button class="btn btn-primary btn-lg pull-right" type="submit">
                                        Submit
                                    </button>
                                </div>
                            </div>
                            <script>
                                var o = document.getElementsByName("freeform_form_handle_3ded90");
                                for (var i in o) {
                                    if (!o.hasOwnProperty(i)) {
                                        continue;
                                    }
                                    o[i].value = "dd91968ea";
                                }
                            </script>
                            <script>
                                "use strict";
                                var form = document.getElementById("8a06e8-form-8oWe9jZpP_0dc8_33e40913f402a07d73fd56d92a6226287f0c5efb663515fe81228").parentElement;
                                form.addEventListener("submit", function() {
                                    var t = form.querySelectorAll("[type=submit]:not([name=form_previous_page_button])"), e = !0, r = !1, n = void 0;
                                    try {
                                        for (var o, i = function() {
                                            var t = o.value;
                                            t.disabled = !0, setTimeout(function() {
                                                t.disabled = !1;
                                            }, 6e5);
                                        }, a = t[Symbol.iterator](); !(e = (o = a.next()).done); e = !0) i();
                                    } catch (l) {
                                        r = !0, n = l;
                                    } finally {
                                        try {
                                            !e && a["return"] && a["return"]();
                                        } finally {
                                            if (r) throw n;
                                        }
                                    }
                                });
                            </script>
                        </form>
                    </div>
                    <div class="modal-footer" style="clear:both; margin-top:20px; border:none;">
                    </div>
                </div>
            </div>
        </div>
        <!-- Google Analytics start -->
        <script>
            var _gaq = _gaq || [];
            _gaq.push(['_setAccount','UA-48285042-1']);
            _gaq.push(['_trackPageview']);
            (function() {
                var ga = document.createElement('script');
                ga.type = 'text/javascript';
                ga.async = true;
                ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
                var s = document.getElementsByTagName('script')[0];
                s.parentNode.insertBefore(ga, s);
            })();
        </script>
        <!-- Google Analytics end -->
        <!-- Bootstrap core JavaScript
    ================================================== -->
        <!-- Placed at the end of the document so the pages load faster -->
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js">
        </script>
        <script>
            window.jQuery || document.write('<script src="/js/jquery.min.js"><\/script>');
        </script>
        <script src="/js/bootstrap.min.js">
        </script>
        <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
        <script src="/js/ie10-viewport-bug-workaround.js">
        </script>
        <script src="/js/jquery.fitvids.js">
        </script>
        <script src="/js/jquery.matchHeight-min.js">
        </script>
        <script src="/js/plyr/plyr.js">
        </script>
        <script src="/js/fresco/js/fresco/fresco.js" type="text/javascript">
        </script>
        <script src="/js/masonry.js" type="text/javascript">
        </script>
        <script src="/js/slick/slick.min.js" type="text/javascript">
        </script>
        <script type="text/javascript">
            _linkedin_partner_id = "980370";
            window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || [];
            window._linkedin_data_partner_ids.push(_linkedin_partner_id);
        </script>
        <script type="text/javascript">
            (function() {
                var s = document.getElementsByTagName("script")[0];
                var b = document.createElement("script");
                b.type = "text/javascript";
                b.async = true;
                b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js";
                s.parentNode.insertBefore(b, s);
            })();
        </script>
        <noscript>
            <img alt="" height="1" src="https://dc.ads.linkedin.com/collect/?pid=980370&amp;fmt=gif" style="display:none;" width="1">
        </noscript>
        <script src="/js/functions.js">
        </script>
        <!-- Start of LiveChat (www.livechatinc.com) code -->
        <script type="text/javascript">
            window.__lc = window.__lc || {
            };
            window.__lc.license = 7338951;
            (function() {
                var lc = document.createElement('script');
                lc.type = 'text/javascript';
                lc.async = true;
                lc.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'cdn.livechatinc.com/tracking.js';
                var s = document.getElementsByTagName('script')[0];
                s.parentNode.insertBefore(lc, s);
            })();
        </script>
        <!-- End of LiveChat code -->
    </body>
</html>

Latest requests

# Url Url Source Date
1 https://pacesettertechnology.com/ 2024-05-03 16:51:10
2 https://thebolditalic.com/?gi=8169… 2024-05-03 16:51:10
3 https://thebolditalic.com/?gi=96eb… 2024-05-03 16:51:03
4 https://thebolditalic.com/?gi=1ef9… 2024-05-03 16:50:59
5 https://thebolditalic.com/?gi=9ae9… 2024-05-03 16:50:55
6 https://thebolditalic.com/?gi=2062… 2024-05-03 16:50:50
7 https://thebolditalic.com/?gi=1692… 2024-05-03 16:50:48
8 https://thebolditalic.com/?gi=ffc5… 2024-05-03 16:50:47
9 https://thebolditalic.com/?gi=491c… 2024-05-03 16:50:43
10 https://thebolditalic.com/?gi=c02f… 2024-05-03 16:50:39
11 https://thebolditalic.com/?gi=08ca… 2024-05-03 16:50:36
12 https://thebolditalic.com/?gi=7d3d… 2024-05-03 16:50:35
13 https://thebolditalic.com/?gi=2b72… 2024-05-03 16:50:33
14 https://thebolditalic.com/?gi=52a3… 2024-05-03 16:50:31
15 https://thebolditalic.com/?gi=6ad2… 2024-05-03 16:50:27
16 https://thebolditalic.com/?gi=796e… 2024-05-03 16:50:19
17 https://thebolditalic.com/?gi=2207… 2024-05-03 16:50:17
18 https://thebolditalic.com/?gi=42ee… 2024-05-03 16:50:15
19 https://thebolditalic.com/?gi=bb6d… 2024-05-03 16:50:11
20 https://thebolditalic.com/?gi=2629… 2024-05-03 16:50:10