www.leasedirect.com Open in urlscan Pro
64.47.157.146  Public Scan

Submitted URL: https://u41485282.ct.sendgrid.net/ls/click?upn=u001.hSBSyN3TupfAZpFElSRSbXqH2U73gRvAmTRyIDma-2F-2FGlG-2FvzVXz8Cj2-2FUsdgNDfy5D6H_9...
Effective URL: https://www.leasedirect.com/
Submission: On April 19 via manual from US — Scanned from DE

Form analysis 3 forms found in the DOM

POST /

<form action="/" method="post"><input id="scController" name="scController" type="hidden" value="BeforeLogIn"><input id="scAction" name="scAction" type="hidden" value="Header"> <!-- Brand Logo -->
  <input id="domainId" name="domainId" type="hidden" value="lss">
  <div class="headerLogo col-lg-10 col-md-10 col-sm-7 col-xs-7">
    <a href="/lss/" id="logo_0_logoLink" class="logo" title="LeaseDirect">
LeaseDirect            </a>
  </div>
  <!-- Brand Logo - end -->
  <!-- hamburger menu -->
  <div class="col-lg-2 col-md-2 col-sm-5 col-xs-5 padR0 padL0">
    <button type="button" data-target="#navbarCollapse" data-toggle="collapse" class="navbar-toggle">
      <span class="sr-only">Toggle navigation</span>
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
    </button>
    <div class="clearfix"></div>
  </div>
  <!-- hamburger menu - end -->
  <div class="clearfix"></div>
</form>

POST /

<form action="/" method="post"><input id="scController" name="scController" type="hidden" value="BeforeLogIn"><input id="scAction" name="scAction" type="hidden" value="LogInBox">
  <input name="__RequestVerificationToken" type="hidden" value="ZWkDUOHgYH4GnQ7NwD0ZfMsahQVl0_OtHAZ6LiJ_Ba-CwzFAg1zh-8uvEm6-rXwHIS7rTZCsN6QQxw0Vntk-rM56jGTSEM6AjKRChWote4U1">
  <link type="text/css" href="/Media/font-awesome/css/font-awesome.min.css" rel="stylesheet">
  <style>
    .password-container {
      width: 400px;
      position: relative;
    }

    .password-container input[type="password"],
    .password-container input[type="text"] {
      width: 100%;
      padding: 12px 36px 12px 12px;
      box-sizing: border-box;
    }

    .fa-eye {
      display: block;
      position: absolute;
      top: 18px;
      right: 25px;
      cursor: pointer;
      color: #0099ff;
    }

    input::-ms-reveal,
    input::-ms-clear {
      display: none;
    }
  </style>
  <div class="loginSec">
    <input type="hidden" id="userbrowsername" name="userbrowsername" value="">
    <input type="hidden" id="useros" name="useros" value="">
    <h4>Log in to your account</h4>
    <div class="form-group">
      <label for="uname" class="col-xs-12 col-sm-12 col-md-12 col-lg-12 font18  control-label"><span style="color:#9a151c; ">*</span>Username</label>
      <a id="forgotUsernameLink" class="loginLabelLink" href="/lss/forgot-username">Forgot your Username?</a>
      <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 padL0">
        <input class="form-control" id="uname" maxlength="100" name="UserName" placeholder="Please enter Username" tabindex="1" title="Please enter Username" type="text" value="">
        <div id="divUserName" class="error hidden">Please enter your username.</div>
      </div>
      <div class="clearfix"></div>
    </div>
    <div class="form-group marT35">
      <label for="pwd" class="col-xs-12 col-sm-12 col-md-12 col-lg-12 font18  control-label"><span style="color:#9a151c;">*</span>Password</label>
      <a id="resetPasswordLink" class="loginLabelLink" href="/lss/forgot-password">Reset Password</a>
      <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 padL0">
        <i class="fa fa-eye" id="eye"></i>
        <input class="form-control" id="pwd" maxlength="100" name="Password" onpaste="return false" placeholder="Please enter Password" tabindex="2" title="Please enter Password" type="password">
        <div id="divPassword" class="error hidden">Please enter your password.</div>
        <div id="divLoginError" class="error font16 col-xs-12 hidden">Login Failed. Please check your username and password and try again.</div>
      </div>
      <div class="clearfix"></div>
    </div>
    <div class="col-xs-12 col-sm-12 col-md-8 col-lg-8 padL0 padT5">
      <div class="hidden" id="Loading" tabindex="-1"> <img src="/Media/Images/ajax-loader.gif" alt="loading"><br> Loading</div>
      <input id="login" type="submit" tabindex="3" class="btn-blue btn-default" value="Log In" title="Log In" onclick="return ValidateForm();">
    </div>
    <div class="col-xs-12 col-sm-12 col-md-8 col-lg-8 padL0 padT5">
      <label class="registerLabel">New to LeaseDirect?</label>
      <input id="register" type="button" tabindex="4" class="btn-white btn-default" value="Register Now" title="Register Now" onclick="window.location.href='/lss/register-now';">
    </div>
    <div class="clearfix"></div>
  </div>
  <script type="text/javascript">
    $("#eye").click(function() {
      var pwdBox = $("#pwd");
      $("#eye").toggleClass("fa-eye-slash");
      $("#pwd").attr("type", pwdBox.attr("type") === "password" ? "text" : "password");
    });

    function ValidateForm() {
      var isValid = true;
      if (document.getElementById("uname").value == "") {
        document.getElementById("divUserName").className = "error font16 col-xs-12";
        // alert("uname");
        isValid = false;
      } else {
        document.getElementById("divUserName").className = "error font16 col-xs-12 hidden";
      }
      if (document.getElementById("pwd").value == "") {
        document.getElementById("divPassword").className = "error font16 col-xs-12";
        //  alert("pwd");
        isValid = false;
      } else {
        document.getElementById("divPassword").className = "error font16 col-xs-12 hidden";
      }
      //alert(isValid);
      if (isValid) {
        $(".bg_load").fadeIn();
        $(".loader").fadeIn();
      }
      return isValid;
    }

    function keypressHandler(e) {
      if (e.which == 13) {
        e.preventDefault(); //stops default action: submitting form
        $(this).blur();
        $('#login').focus().click(); //give your submit an ID
      }
    }
  </script>
</form>

POST

<form id="fileUploadForm" enctype="multipart/form-data" method="post" target="fileUploadIframe"><input type="file" id="fileSelector" name="file" style="display: none;"><input name="filename" type="hidden"></form>

Text Content

LeaseDirect
Toggle navigation




LET'S CHECK THAT YOU ARE HEADING THE RIGHT WAY.

Choose an option
Contract Invoice Number
Contract Number

Invoice Number

Back Let's Check
Please login to make a payment
Close


THIS CONTRACT WILL BE PAID DIRECTLY IN LEASEDIRECT.

You may be used to logging into LeaseDirect and then having to login to Payer
Express to make your payment.

 * If you don't have a LeaseDirect username and password, please Register below.

 * If you already have a LeaseDirect account, please Login.

Register Log In
 * Make a Payment
 * Contact Us


WHAT CAN WE
HELP YOU WITH?

LOG IN TO YOUR ACCOUNT

*Username Forgot your Username?
Please enter your username.

*Password Reset Password
Please enter your password.
Login Failed. Please check your username and password and try again.


Loading
New to LeaseDirect?




Click to manage payments and Enroll in Autopay

Visit Our Payment Center

View account information and enroll in email invoicing



Access to contract, invoices, and payment histories




 * Home
 * Cookie Statement
 * Customer Complaints
 * Sitemap
 * Privacy Statement

 * Make a Payment
 * Contact Us
 * Terms & Conditions
 * Take our Survey
 * Electronic Communications Agreement

 * General Payment Terms & Conditions

© Copyright 2023 leasedirect All Rights Reserved.



ALMOST THERE!

 * We are making changes to our Customer Portal to improve your payment
   experience.

 * To continue, you'll need to reset your password.

 * Please click "Reset my Password". Don't worry, this will just take a minute
   or so!

Reset my Password




COOKIE SETTINGS

By clicking “Accept All Cookies”, you agree to the storing of cookies on your
device to enhance site navigation, analyze site usage, and assist in our
marketing efforts. By clicking on the 'X' button, the defaults settings are left
unchanged. You can change your preferences at any time by clicking 'Cookie
Settings'. If consent is provided, this website will use third party
tracking-cookies to measure user preferences, enable content sharing on social
media and interest-based advertising.

Reject All Accept All Cookies
Cookies Settings



PRIVACY PREFERENCE CENTER




 * YOUR PRIVACY


 * STRICTLY NECESSARY COOKIES


 * FUNCTIONAL COOKIES

YOUR PRIVACY

When you visit any website, it may store or retrieve information on your
browser, mostly in the form of cookies. This information might be about you,
your preferences or your device and is mostly used to make the site work as you
expect it to. The information does not usually directly identify you, but it can
give you a more personalized web experience. Because we respect your right to
privacy, you can choose not to allow some types of cookies. Click on the
different category headings to find out more and change our default settings.
However, blocking some types of cookies may impact your experience of the site
and the services we are able to offer.
More information

STRICTLY NECESSARY COOKIES

Always Active

These cookies are necessary for the website to function and cannot be switched
off in our systems. They are usually only set in response to actions made by you
which amount to a request for services, such as setting your privacy
preferences, logging in or filling in forms. You can set your browser to block
or alert you about these cookies, but some parts of the site will not then work.
These cookies do not store any personally identifiable information.

Cookies Details‎

FUNCTIONAL COOKIES

Functional Cookies


These cookies enable the website to provide enhanced functionality and
personalisation. They may be set by us or by third party providers whose
services we have added to our pages. If you do not allow these cookies then some
or all of these services may not function properly.

Cookies Details‎
Back Button


COOKIE LIST

Filter Button
Consent Leg.Interest
checkbox label label
checkbox label label
checkbox label label

 * View Third Party Cookies
    * Name
      cookie name


Clear
checkbox label label
Apply Cancel
Confirm My Choices
Reject All Allow All

Live chat:Chat with an Expert