whm.ambari.daliawebsolution.com Open in urlscan Pro
103.195.186.85  Public Scan

URL: https://whm.ambari.daliawebsolution.com/
Submission: On April 15 via api from US — Scanned from DE

Form analysis 8 forms found in the DOM

POST ./assets/php/contact.php

<form class="contact-form needs-validation" method="post" action="./assets/php/contact.php" novalidate="">
  <div class="messages"></div>
  <div class="row gx-4">
    <div class="col-md-12">
      <div class="form-floating mb-4">
        <input id="form_name" type="text" name="name" class="form-control" placeholder="Jane" required="">
        <label for="form_name">First Name *</label>
        <div class="valid-feedback"> Looks good! </div>
        <div class="invalid-feedback"> Please enter your first name. </div>
      </div>
    </div>
    <div class="col-md-12">
      <div class="form-floating mb-4">
        <input id="form_lastname" type="text" name="surname" class="form-control" placeholder="Doe" required="">
        <label for="form_lastname">Last Name *</label>
        <div class="valid-feedback"> Looks good! </div>
        <div class="invalid-feedback"> Please enter your last name. </div>
      </div>
    </div>
    <div class="col-md-12">
      <div class="form-floating mb-4">
        <input id="form_email" type="email" name="email" class="form-control" placeholder="jane.doe@example.com" required="">
        <label for="form_email">Email *</label>
        <div class="valid-feedback"> Looks good! </div>
        <div class="invalid-feedback"> Please provide a valid email address. </div>
      </div>
    </div>
    <div class="col-md-12">
      <div class="form-select-wrapper mb-4">
        <select class="form-select" id="form-select" name="department" required="">
          <option selected="" disabled="" value="">Select a department</option>
          <option value="Sales">Sales</option>
          <option value="Marketing">Marketing</option>
          <option value="Customer Support">Customer Support</option>
        </select>
        <div class="valid-feedback"> Looks good! </div>
        <div class="invalid-feedback"> Please select a department. </div>
      </div>
    </div>
    <div class="col-12">
      <div class="form-check mb-4">
        <input class="form-check-input" type="checkbox" value="" id="invalidCheck" required="">
        <label class="form-check-label" for="invalidCheck"> I agree to <a href="#" class="hover">terms and policy</a>. </label>
        <div class="invalid-feedback"> You must agree before submitting. </div>
      </div>
    </div>
    <div class="col-12">
      <input type="submit" class="btn btn-primary rounded-pill btn-send" value="Send message">
    </div>
  </div>
</form>

POST dwss_contact_plugin/homepage_form.php

<form action="dwss_contact_plugin/homepage_form.php" id="dwss-contact-form" method="post" enctype="multipart/form-data">
  <input type="hidden" name="user_agent" value="">
  <input type="hidden" name="has_otp" value="0">
  <div class="messages"></div>
  <div class="row gx-4">
    <div class="col-md-12">
      <div class="form-floating mb-4">
        <input type="text" size="35" id="phone" name="how_much" placeholder="CODE" autocomplete="off" maxlength="10" minlength="10" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*?)\..*/g, '$1');"
          class="form-control required number">
        <label for="form_country">How Much do you owe? *</label>
      </div>
    </div>
    <div class="col-md-12">
      <div class="form-floating mb-4">
        <select name="in_rupee" class="countries form-control" id="countryId">
          <option selected="" disabled="" value="">-- Monthly income --</option>
          <option value="0 - $1,000">0 - $1,000</option>
          <option value="$1,000 - $1,500">$1,000 - $1,500</option>
          <option value="$1,500 - $2,000">$1,500 - $2,000</option>
          <option value="$2,000 - $2,500">$2,000 - $2,500</option>
          <option value="$2,500 - $3,000">$2,500 - $3,000</option>
          <option value="$3,000 - $3,500">$3,000 - $3,500</option>
          <option value="$3,500 - $4,000">$3,500 - $4,000</option>
          <option value="$4,000 - $4.500">$4,000 - $4.500</option>
          <option value="$4,500 - $5,000+">$4,500 - $5,000+</option>
        </select>
        <label for="form_country">Net Monthly Income*</label>
      </div>
    </div>
    <div class="col-md-12">
      <div class="form-floating mb-4">
        <input id="form_name" type="text" name="f_name" class="form-control" placeholder="First name " required="">
        <label for="form_name">First Name *</label>
        <div class="valid-feedback"> Looks good! </div>
        <div class="invalid-feedback"> Please enter your first name. </div>
      </div>
    </div>
    <div class="col-md-12">
      <div class="form-floating mb-4">
        <input id="form_name" type="text" name="last_name" class="form-control" placeholder="Last name " required="">
        <label for="form_name">Last Name *</label>
        <div class="valid-feedback"> Looks good! </div>
        <div class="invalid-feedback"> Please enter your last name. </div>
      </div>
    </div>
    <div class="col-md-12">
      <div class="form-floating mb-4">
        <input id="form_email" type="text" name="email" class="form-control" placeholder="Email" required="">
        <label for="form_email">Email *</label>
        <div class="valid-feedback"> Looks good! </div>
        <div class="invalid-feedback"> Please provide a valid email address. </div>
      </div>
    </div>
    <div class="col-md-12">
      <div class="form-floating mb-4">
        <input type="text" size="35" id="phone" name="phone" placeholder="CODE" autocomplete="off" maxlength="10" minlength="10" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*?)\..*/g, '$1');"
          class="form-control required number">
        <label for="form_mobile">Mobile *</label>
        <div class="valid-feedback"> Looks good! </div>
        <div class="invalid-feedback"> Please provide a valid Number </div>
      </div>
    </div>
    <div class="col-12 text-center">
      <input type="submit" class="btn btn-lg btn-secondary form-submit rounded-pill me-2">
    </div>
  </div>
</form>

POST

<form class="contact-form needs-validation text-center" method="post" novalidate="">
  <div class="messages"></div>
  <div class="row gx-4 text-center">
    <div class="col-md-12">
      <div class="form-floating mb-4">
        <input type="number" size="35" id="phone" name="debt" placeholder="CODE" autocomplete="off" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*?)\..*/g, '$1');" class="form-control required number"
          style="box-shadow: 2px 5px 11px 2px rgb(191 0 0.40);">
        <label for="form_country">Total Unsecured Debt *</label>
      </div>
    </div>
    <div class="col-md-6 text-center">
      <div class="form-select-wrapper rahul_block mb-4" style="display: flex;">
        <div class="form-check">
          <input class="form-check-input  text-white" type="radio" name="debt_repayment" id="flexRadioDefault1" value="monthly" checked="">
          <label class="form-check-label text-white" style="width: 200px; font-weight: 900;" for="flexRadioDefault1"> Monthly Payment </label>
        </div>
        <div class="form-check">
          <input class="form-check-input text-white" type="radio" name="debt_repayment" id="flexRadioDefault2" value="yearly">
          <label class="form-check-label  text-white" style="width: 200px; font-weight: 900;" for="flexRadioDefault2"> Over 5 Years </label>
        </div>
      </div>
    </div>
  </div>
  <div class="col-12">
    <a hhref="javascript:;" onclick="calculateDebt();" class="btn btn-white rounded-pill btn-send mb-3"><i class="uil uil-calculator"></i>&nbsp;  Calcuate My Debt  </a>
  </div>
</form>

GET https://maps.google.com/maps

<form action="https://maps.google.com/maps" method="get" target="_blank" style="width: 100%;">
  <div class="form-group">
    <input class="form-control" name="saddr" placeholder="Enter Your Loaction" type="text">
    <input type="hidden" name="daddr" value="3200 Dufferin St Suite#502, North York, ON M6A 3B2, Canada">
    <br>
    <center>
      <button class="btn btn-primary" type="submit"> <i class="fa fa-paper-plane-o" aria-hidden="true"></i>Get Direction</button>
    </center>
  </div>
</form>

GET https://maps.google.com/maps

<form action="https://maps.google.com/maps" method="get" target="_blank" style="width: 100%;">
  <div class="form-group">
    <input class="form-control" name="saddr" placeholder="Enter Your Location" type="text">
    <input type="hidden" name="daddr" value="150 Consumers Rd, Suite 200, North York, ON, M2A 1P9">
    <br>
    <center>
      <button class="btn btn-primary" type="submit"> <i class="fa fa-paper-plane-o" aria-hidden="true"></i> Get Direction</button>
    </center>
  </div>
</form>

GET https://maps.google.com/maps

<form action="https://maps.google.com/maps" method="get" target="_blank" style="width: 100%;">
  <div class="form-group">
    <input class="form-control" name="saddr" placeholder="Enter Your Location" type="text">
    <input type="hidden" name="daddr" value="2 County Court Blvd., Suite 235, Brampton, ON, L6W 3W8">
    <br>
    <center>
      <button class="btn btn-primary" type="submit"> <i class="fa fa-paper-plane-o" aria-hidden="true"></i> Get Direction</button>
    </center>
  </div>
</form>

GET https://maps.google.com/maps

<form action="https://maps.google.com/maps" method="get" target="_blank" style="width: 100%;">
  <div class="form-group">
    <input class="form-control" name="saddr" placeholder="Enter Your Loaction" type="text">
    <input type="hidden" name="daddr" value="4275 King St. East, Suite#300, Kitchener, ON, N2P 0C6">
    <br>
    <center>
      <button class="btn btn-primary" type="submit"> <i class="fa fa-paper-plane-o" aria-hidden="true"></i>Get Direction</button>
    </center>
  </div>
</form>

POST dwss_contact_plugin/homepage_form.php

<form action="dwss_contact_plugin/homepage_form.php" id="dwss-contact-form-1" method="post" enctype="multipart/form-data">
  <div class="messages"></div>
  <div class="row gx-4">
    <div class="col-md-6">
      <div class="form-floating mb-4">
        <input type="text" size="35" id="phone" name="how_much" placeholder="CODE" autocomplete="off" maxlength="10" minlength="10" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*?)\..*/g, '$1');"
          class="form-control required number">
        <label for="form_country">How Much do you owe? *</label>
      </div>
    </div>
    <div class="col-md-6">
      <div class="form-floating mb-4">
        <select name="in_rupee" class="countries form-control" id="countryId">
          <option selected="" disabled="" value="">-- Monthly income --</option>
          <option value="0 - $1,000">0 - $1,000</option>
          <option value="$1,000 - $1,500">$1,000 - $1,500</option>
          <option value="$1,500 - $2,000">$1,500 - $2,000</option>
          <option value="$2,000 - $2,500">$2,000 - $2,500</option>
          <option value="$2,500 - $3,000">$2,500 - $3,000</option>
          <option value="$3,000 - $3,500">$3,000 - $3,500</option>
          <option value="$3,500 - $4,000">$3,500 - $4,000</option>
          <option value="$4,000 - $4.500">$4,000 - $4.500</option>
          <option value="$4,500 - $5,000+">$4,500 - $5,000+</option>
        </select>
        <label for="form_country">Net Monthly Income*</label>
      </div>
    </div>
    <div class="otp-wapper" style="display: none;">
      <p>OTP</p>
      <input type="hidden" name="user_agent" value="">
      <input type="hidden" name="has_otp" value="0">
    </div>
    <div class="col-md-6">
      <div class="form-floating mb-4">
        <input id="form_name" type="text" name="f_name" class="form-control" placeholder="First name " required="">
        <label for="form_name">First Name *</label>
        <div class="valid-feedback"> Looks good! </div>
        <div class="invalid-feedback"> Please enter your first name. </div>
      </div>
    </div>
    <div class="col-md-6">
      <div class="form-floating mb-4">
        <input id="form_name" type="text" name="last_name" class="form-control" placeholder="First name " required="">
        <label for="form_name">Last Name *</label>
        <div class="valid-feedback"> Looks good! </div>
        <div class="invalid-feedback"> Please enter your last name. </div>
      </div>
    </div>
    <div class="col-md-6">
      <div class="form-floating mb-4">
        <input id="form_email" type="text" name="email" class="form-control" placeholder="Email" required="">
        <label for="form_email">Email *</label>
        <div class="valid-feedback"> Looks good! </div>
        <div class="invalid-feedback"> Please provide a valid email address. </div>
      </div>
    </div>
    <div class="col-md-6">
      <div class="form-floating mb-4">
        <input type="text" size="35" id="phone" name="phone" placeholder="CODE" autocomplete="off" maxlength="10" minlength="10" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*?)\..*/g, '$1');"
          class="form-control required number">
        <label for="form_mobile">Mobile *</label>
        <div class="valid-feedback"> Looks good! </div>
        <div class="invalid-feedback"> Please provide a valid Number </div>
      </div>
    </div>
    <div class="col-12 text-center">
      <input type="submit" class="btn btn-lg btn-primary rounded-pill me-2 form-submit">
    </div>
  </div>
</form>

Text Content

 * Home
 * About Us
 * Services
   
   DEBT SETTLEMENT PROPOSAL
   
    * What Is A Debt Settlement Proposal
      
    * What kind of debts can be included
    * How Does it Work?
    * Advantages of a Debt Settlement Proposal
      
      
      
   
   DEBT CONSOLIDATION
   
    * What Is A Debt Consolidation
    * Struggling with Debt Consolidation
    * What kind of debts can be included
    * How Does it Work?
    * Advantages of a Debt Consolidation
      
      
    * General FAQ's

 * Know Debt
   * CEBA Loan
   * Credit Counselling
   * Credit Score
   * Overdraft and line of Credit
   * Personal Loan
   * Secured Loan
   * Payday Loans
   * Business & Income Tax
   * Credit Card Balances
   * Miscellaneous
   * Debt Solutions
   
   
   
   
   
   
 * Reviews
 * Contact Us

info@cmsgroup.ca
416-780-1020


 *   416-780-1020
 * 

 * 
 * 
 * 
 * 

 * Our Offices: Toronto | Scarborough | Brampton/ Mississauga | Kitchener

 * Click For Office Hours

Debt Calculator

 * Home
 * About Us
 * Services
   
   DEBT SETTLEMENT PROPOSAL
   
    * What Is A Debt Settlement Proposal
      
    * What kind of debts can be included
    * How Does it Work?
    * Advantages of a Debt Settlement Proposal
      
      
      
   
   DEBT CONSOLIDATION
   
    * What Is A Debt Consolidation
    * Struggling with Debt Consolidation
    * What kind of debts can be included
    * How Does it Work?
    * Advantages of a Debt Consolidation
      
      
    * General FAQ's

 * Know Debt
   * CEBA Loan
   * Credit Counselling
   * Credit Score
   * Overdraft and line of Credit
   * Personal Loan
   * Secured Loan
   * Payday Loans
   * Business & Income Tax
   * Credit Card Balances
   * Miscellaneous
   * Debt Solutions
   
   
   
   
   
   
 * Reviews
 * Contact Us

info@cmsgroup.ca
416-780-1020


 *   416-780-1020
 * 


JOIN THE MAILING LIST AND GET %10 OFF

Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla
non metus auctor fringilla.

First Name *
Looks good!
Please enter your first name.
Last Name *
Looks good!
Please enter your last name.
Email *
Looks good!
Please provide a valid email address.
Select a department Sales Marketing Customer Support
Looks good!
Please select a department.
I agree to terms and policy.
You must agree before submitting.



WE WORK FOR YOU


NOT FOR THE CREDITORS

Contact Us


ONE SMALL INTEREST-FREE PAYMENT


FOR ALL YOUR DEBT

Calcuate Now


ELIMINATE YOUR DEBT IN 1-5 YEARS


REBUILD YOUR CREDIT

Calcuate Now


STOP THREATENING CALLS


GARNISHMENTS & COURT ORDERS

Contact Us


GET RELIEF TODAY!


CONTACT OUR CAIRP CERTIFIED COUNSELLORS FOR QUICK ASSESSMENT

Contact Us


SAVE YOUR CAR, HOUSE,


BUSINESS, SAVINGS & OTHER ASSETS

Call Us Now


HELPED THOUSANDS OF CLIENTS


LIKE YOU SINCE 2003

Call Us Now



FINANCIAL PROBLEMS


WITH CREDIT CARDS - LOANS - TAXES?


IF

 * All your income is going to pay bills.
 * Your salary is being garnished.
 * Everyday there is fight & argument at home.
 * You are afraid to answer your own phone.
 * Creditors & Collection agencies are harassing you and threatening to take
   legal actions.
 * You are stuck in a cycle of high interest payday loans.


THEN, WE CAN

 * Reduce your debts to less than half.
 * Stop the interest right away.
 * Stop the garnishment & other legal actions.
 * Bring back your stress free family life.
 * Save you from threatening phone calls.
 * Save your home, assets and business.Help you re-build your credit.


CHECK HOW MUCH YOU’LL PAY!


START HERE

--------------------------------------------------------------------------------

How Much do you owe? *
-- Monthly income -- 0 - $1,000 $1,000 - $1,500 $1,500 - $2,000 $2,000 - $2,500
$2,500 - $3,000 $3,000 - $3,500 $3,500 - $4,000 $4,000 - $4.500 $4,500 - $5,000+
Net Monthly Income*
First Name *
Looks good!
Please enter your first name.
Last Name *
Looks good!
Please enter your last name.
Email *
Looks good!
Please provide a valid email address.
Mobile *
Looks good!
Please provide a valid Number




REDUCE YOUR DEBT BY UP TO |


DEBT CALCULATOR

We have helped Canadians begin a fresh financial future for over 20 years, and
we are here to help you too.

  Get Consultation
  416-780-1020
 
 
 
 


HOW MUCH CAN YOU SAVE?

Enter Your Total Unsecured Debt Amount

Total Monthly Payment
Total Reduction
Click here to Debt Free


HOW MUCH DEBT ARE YOU IN?

Total Unsecured Debt *
Monthly Payment
Over 5 Years
  Calcuate My Debt

DISCLAIMER: This debt calculator is for estimated monthly payments and debt
reduction only. The actual results depends on several factors like your income,
any assets you own etc.

 * CMS Debt Settlement Proposal
   
   

 * Debt Consolidation
   
   

 * Do nothing. Pay in full.
   
   


OUR DEBT MANAGEMENT PLAN CAN HELP YOU
WITH THE FOLLOWING DEBTS

Business Debt

Business Tax

Car Loan Shortfall

Credit Cards

Line of Credit

Mortages Shortfall

Overdraft

Pay Day Loan

Personal Loan

Revenue Canada

Store Cards

Student Loan

NOTE:

 * We are a team of CAIRP certified credit counsellors who provide a
   personalized and comprehensive solution to manage your debt and lead you
   towards financial freedom.
 * Should a need arise to file a Consumer Proposal or bankruptcy, a LIT will be
   handling your file.

DEBT SETTLEMENT PROPOSAL

If your debt is increasing and you are trying to avoid high interest, collection
calls & legal action

Learn More

DEBT CONSOLIDATION

Our debt experts can help you with debt options.

Learn More


MAXIMIZE YOUR CREDIT POTENTIAL


WHAT WE PROVIDE

With more than 20 years of experience, our CAIRP certified counsellors are here
to provide debt consolidation services, we offer a tailored approach to managing
your debts effectively.

At Credit Management Services, we understand the stress and burden that multiple
debts can place on your life. That's why we offer a comprehensive range of debt
consolidation solutions designed to simplify your financial obligations and
provide you with a clear path to financial stability.


DEBT CONSOLIDATION FIRM SERVING THE TORONTO, ON AREA


ABOUT US

Credit Management Services is an Ontario based firm with a professional and
dedicated staff of CAIRP certified counselors to provide you the services of
credit counselling, debt management, mortgage loans and real estate. Since the
year 2003 our qualified professionals have been working with people with
different financial situations, debt problems, and income and family
responsibilities to fulfill their needs in all these areas.

Credit Management Services has helped thousands of clients to manage their
finances and get out of debt. Our programs and services help people in all
stages of their financial lives and to take the next step towards personal
wealth management accomplishment.


FUNFACTS


WE ARE TRUSTED BY OVER
12000+ CUSTOMERS.


4500

Debt Settlement


1600

Debt Consolidation


6000

Credit Counselling


TESTIMONIALS


OUR CUSTOMER SAY

Your reviews are confidential. Please feel free to let us know about our
services.

Write Review
All Testimonials

Note: We don’t disclose any personal information

> I had six credit cards and was paying $550 per month. Bank did not give me a
> consolidation loan because I had bad credit. Then I met a Counsellor from
> Credit Management Services and my loans were reduced to one small payment of
> just $200.
> 
> – J.G.

> “I went back home to get married, then I had to go again because my parent got
> sick. Because of that, I had to borrow money from my credit cards and I also
> lost my job.
> 
> – E.J.

> “I was afraid to pick up my own phone. I was so confused and stressed all the
> time that I didn’t know what to do, but after meeting with a Counsellor
> from Credit Management Services”
> 
> – M.M.

> “After making us debt-free, now Credit Management Services helped us get the
> mortgage. We are happy to move to our new house”
> 
> – S.S. & E.S.

> “My husband was so stressed with these credit card bills that once he forgot
> to stop at a red traffic signal. Fortunately, no accident happened but I
> called Credit Management Services right away."
> 
> – E.J.

> This bill………. that bill………… bills and bills…………….. It seemed that we were
> working for paying these bills only. But now we are very happy. We are saving
> now so that we can buy a house.”
> 
> – E.R. & L.R




REDUCE YOUR DEBTS BY UPTO 80%


ONE SMALL INTEREST FREE PAYEMENT
FOR ALL YOUR DEBTS


CALL NOW 416-780-1020


CONTACT US


OUR LOCATIONS


TORONTO

ADDRESS

3200 Dufferin Street,
Suite 502, North York,
ON M6A 3B2 (Dufferin & Orfus)

WHERE ARE YOU?


Get Direction
Google Reviews
4.9
37 reviews
Provided by review-widget.net
Write A Review


SCARBOROUGH

ADDRESS

150 Consumers Rd,
Suite 200, North York,
ON, M2A 1P9 (Sheppard & Victoria Park)

WHERE ARE YOU?


Get Direction
Google Reviews
4
4 reviews
Provided by review-widget.net
Write A Review


BRAMPTON/MISSISSAUGA

ADDRESS

2 County Court Blvd.,
Suite 235, Brampton, ON,
L6W 3W8 (Hurontario & Steeles)

WHERE ARE YOU?


Get Direction
Google Reviews
5
2 reviews
Provided by review-widget.net
Write A Review


KITCHENER

ADDRESS

4275 King St. East,
Suite 300, Kitchener,
ON, N2P 0C6
(King St & Deer Ridge Dr)

WHERE ARE YOU?


Get Direction
Google Reviews
4.9
37 reviews
Provided by review-widget.net
Write A Review


PHONE

416-780-1020

EMAIL

info@cmsgroup.ca

--------------------------------------------------------------------------------

Copyright © 2024 All Rights Reserved By Credit Management Services
Disclaimer
Design & Develop By Kan Media


OFFICE HOURS

(Closed on New Year’s Day, Family Day, Good Friday, Victoria Day, Canada Day,
Labour Day, Thanksgiving Day, Christmas & Boxing Day)

Day Timings Tuesday 9:30 AM — 6:00 PM Wednesday 9:30 AM — 6:00 PM Thrusday 9:30
AM — 6:00 PM Friday 9:30 AM — 6:00 PM Saturday 9:30 AM — 2:00 PM Sunday Holiday


HAVE YOU CALCULATED YOUR DEBT ?

Now Relax! Just fill the form and Start Stress free Life from your all Debt

How Much do you owe? *
-- Monthly income -- 0 - $1,000 $1,000 - $1,500 $1,500 - $2,000 $2,000 - $2,500
$2,500 - $3,000 $3,000 - $3,500 $3,500 - $4,000 $4,000 - $4.500 $4,500 - $5,000+
Net Monthly Income*

OTP

First Name *
Looks good!
Please enter your first name.
Last Name *
Looks good!
Please enter your last name.
Email *
Looks good!
Please provide a valid email address.
Mobile *
Looks good!
Please provide a valid Number