www.aptsolutions.co.za Open in urlscan Pro
35.173.69.207  Public Scan

Submitted URL: http://aptsolutions.co.za/
Effective URL: https://www.aptsolutions.co.za/
Submission: On August 28 via api from NL — Scanned from NL

Form analysis 3 forms found in the DOM

POST /calculate-quote/

<form action="/calculate-quote/" method="POST" id="quota-form">
  <input type="hidden" name="csrfmiddlewaretoken" value="MLmt9wU7YAtpS5hGM1f5PiUZZrKYgDlePbepkWxWOTkAelaG7sHROOS7HB4ipW81">
  <section>
    <div class="row mb-2">
      <div class="col-6">
        <label for="name-field" class="form-label">Your Name</label>
        <input type="text" class="form-control rounded-pill" id="name-field" placeholder="Enter Your Name" name="name">
      </div>
      <div class="col-6">
        <label for="accounts-package-field" class="form-label">Your Turnover</label>
        <select class="form-select rounded-pill" aria-label="Turnover select" id="turnover-field" name="turn_over">
          <option value="960">0 -300000</option>
          <option value="1160">300000-1mil</option>
          <option value="1360">1mil-5mil</option>
          <option value="1760">5mil-15mil</option>
          <option value="1960">15mil-30mil</option>
          <option value="2560">30mil &lt;</option>
        </select>
      </div>
    </div>
    <div class="row mb-2">
      <div class="col-6">
        <label for="email-field" class="form-label">Enter Email</label>
        <input type="email" class="form-control rounded-pill" id="email-field" placeholder="Enter Email" name="email" required="">
      </div>
      <div class="col-6">
        <label for="vat-field" class="form-label">Do you want us to do Vat?</label>
        <select class="form-select rounded-pill" aria-label="Vat Select" id="vat-field" name="vat">
          <option value="no" selected="">No</option>
          <option value="yes">Yes</option>
        </select>
      </div>
    </div>
    <div class="row mb-2">
      <div class="col-6">
        <label for="phone-field" class="form-label">Telephone Number</label>
        <input type="phone" class="form-control rounded-pill" id="phone-field" placeholder="Enter Telephone Number" name="phone">
      </div>
      <div class="col-6">
        <label for="payroll-field" class="form-label">Do you want us to manage payroll?</label>
        <select class="form-select rounded-pill" aria-label="Payroll select" id="payroll-field" name="payroll_period" onchange="handleSelectToggle(this)" data-target="employees-number-cont">
          <option value="no" selected="">No</option>
          <option value="weekly">Weekly</option>
          <option value="fortnightly">Fortnightly</option>
          <option value="monthly">Monthly</option>
        </select>
        <div class="hidden" id="employees-number-cont">
          <label for="employees-number-field" class="form-label">Enter Employees Number</label>
          <input type="number" class="form-control rounded-pill" id="employees-number-field" placeholder="Enter Employees Number" name="employees_number">
        </div>
      </div>
    </div>
    <div class="row mb-2">
      <div class="col-6">
        <label for="business-type-field" class="form-label">Business Type</label>
        <select class="form-select rounded-pill" aria-label="Business Type select" id="business-type-field" name="business_type">
          <option value="company">Company</option>
          <option value="partnership">Partnership</option>
          <option value="sole-trader">Sole Trader</option>
          <option value="close-corporation">Close Corporation</option>
        </select>
      </div>
      <div class="col-6">
        <label for="bookkeeping-field" class="form-label">Do you want us to do bookkeeping?</label>
        <select class="form-select rounded-pill" aria-label="Payroll select" id="bookkeeping-field" name="bookkeeping" onchange="handleSelectToggle(this)" data-target="transaction-number-cont">
          <option value="no" selected="">No</option>
          <option value="yes">Yes</option>
        </select>
        <div class="hidden" id="transaction-number-cont">
          <label for="transaction-number-field" class="form-label">How many transactions per month?</label>
          <input type="number" class="form-control rounded-pill" id="transaction-number-field" placeholder="Enter Transaction Number" name="transaction_number">
        </div>
      </div>
    </div>
  </section>
  <div class="row text-center">
    <label class="form label" id="custom-qoute-form-label">We will never share your details with any third-party</label>
    <input type="submit" value="Get Instant Quote" class="btn btn-success  mt-5">
  </div>
</form>

POST /wizard_register/

<form id="wizard-quota-form" action="/wizard_register/" method="post">
  <input type="hidden" name="csrfmiddlewaretoken" value="MLmt9wU7YAtpS5hGM1f5PiUZZrKYgDlePbepkWxWOTkAelaG7sHROOS7HB4ipW81">
  <!-- progressbar -->
  <ul id="progressbar">
    <li class="active" id="account"><strong>Basic Details</strong></li>
    <li id="personal"><strong>Name Choices</strong></li>
    <li id="payment"><strong>Address</strong></li>
    <li id="confirm"><strong>Number Of Directors</strong></li>
    <li id="confirm"><strong>Directors List</strong></li>
    <li id="pay"><strong>Payment</strong></li>
  </ul> <!-- fieldsets -->
  <div class="text-danger" id="error-cont">
  </div>
  <fieldset id="first">
    <div class="form-card">
      <section>
        <div class="row">
          <div class="col-8 mb-3">
            <div class="row">
              <div class="col-6 mb-3">
                <label for="first-name-field" class="form-label">First Name</label>
                <input type="text" class="form-control rounded-pill" id="first-name-field" placeholder="Enter Your First Name" name="first_name">
              </div>
              <div class="col-6 mb-3">
                <label for="last-name-field" class="form-label">Last Name</label>
                <input type="text" class="form-control rounded-pill" id="last-name-field" placeholder="Enter Your Last Name" name="last_name">
              </div>
              <div class="col-6 mb-3">
                <label for="phone-field" class="form-label">Phone Number</label>
                <input type="text" class="form-control rounded-pill" id="phone-field" placeholder="Enter Your Phone Number" name="phone">
              </div>
              <div class="col-6 mb-3">
                <label for="email-field" class="form-label">Email</label>
                <input type="email" class="form-control rounded-pill" id="email-field" placeholder="Enter Your Email" name="email">
              </div>
            </div>
          </div>
          <div class="col-4 mb-3">
            <h5> Information </h5>
            <p> Please complete your contact information- you will then be charged R780, which we will refund you if you sign up for our monthly Accounting Services.</p>
          </div>
          <div class="col-12">
            <!--  <p class="text-muted">-->
            <p class="text-primary"> By signing up you agree to APT Solutions' Terms and Conditions </p>
          </div>
        </div>
      </section>
    </div>
    <input id="first_btn" type="button" name="next" class="next btn btn-primary w-75 mx-auto" value="Next Step" data-validate="basicDetails">
  </fieldset>
  <fieldset>
    <div class="alert alert-success alert-dismissible fade show" role="alert" style="border: solid green 1px; margin-left: 20%; margin-right: 20%; border-radius:4px">
      <strong>Congratulations!</strong> Payment Successful <button type="button" style="top:-12px" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
    </div>
    <div class="form-card">
      <section>
        <div class="row">
          <div class="col-8 mb-3">
            <div class="row">
              <div class="col-6 mb-3">
                <label for="first-choice-field" class="form-label">First Choice</label>
                <input type="text" class="form-control rounded-pill" id="first-choice-field" placeholder="Business Name 1" name="first_name_choice">
              </div>
              <div class="col-6 mb-3">
                <label for="second-choice-field" class="form-label">Second Choice</label>
                <input type="text" class="form-control rounded-pill" id="second-choice-field" placeholder="Business Name 2" name="second_name_choice">
              </div>
              <div class="col-6 mb-3">
                <label for="thrid-choice-field" class="form-label">Thrid Choice</label>
                <input type="text" class="form-control rounded-pill" id="thrid-choice-field" placeholder="Business Name 3" name="thrid_name_choice">
              </div>
              <div class="col-6 mb-3">
                <label for="fourth-choice-field" class="form-label">Fourth Choice</label>
                <input type="text" class="form-control rounded-pill" id="fourth-choice-field" placeholder="Business Name 4" name="fourth_name_choice">
              </div>
            </div>
          </div>
          <div class="col-4 mb-3">
            <h5> Name Choices </h5>
            <p> Please provide 4 company name options in order of preference. They will be tested by CIPC in this order.</p>
            <h5> **NB </h5>
            <p> If all 4 of your company names are rejected, there is an additional cost of R100 for each set of 4 company names submitted.</p>
          </div>
        </div>
      </section>
    </div>
    <input type="button" name="previous" class="previous btn btn-dark" value="Previous">
    <input type="button" name="next" class="next btn btn-primary" value="Next Step" data-validate="nameChoices">
  </fieldset>
  <fieldset>
    <div class="form-card">
      <section>
        <div class="row">
          <div class="col-8 mb-3">
            <div class="row">
              <div class="col-6 mb-3">
                <div class="col-12 mb-3 border-bottom">
                  <h3>COMPANY REGISTERED ADDRESS</h3>
                  <!-- <p class="text-muted">
                                                                Must be a South African physical address and only one address -->
                  <p></p>
                </div>
                <div class="col-12 mb-3">
                  <label for="registered-address-field" class="form-label">Registered Address</label>
                  <div class="row">
                    <div class="col-12 mb-3">
                      <input type="text" class="form-control" id="registered-address-field" placeholder="South African physical address" name="registered_address">
                    </div>
                    <div class="col-12 mb-3">
                      <input type="text" class="form-control" id="registered-address-field" placeholder="Second line of your registered address" name="second_registered_address">
                    </div>
                  </div>
                </div>
                <div class="row">
                  <div class="col-6 mb-3">
                    <label for="suburb-field" class="form-label">Suburb</label>
                    <input type="text" class="form-control" id="suburb-field" name="suburb_registered">
                  </div>
                  <div class="col-6 mb-3">
                    <label for="postal-code-field" class="form-label">Postal Code</label>
                    <input type="text" class="form-control" id="postal-code-field" name="postal_code_registered">
                  </div>
                </div>
                <div class="col-12 mb-3">
                  <label for="province-field" class="form-label">Province</label>
                  <select class="form-select" id="province-field" name="province_registered">
                    <option value="Eastern Cape">Eastern Cape</option>
                    <option value="Free State">Free State</option>
                    <option value="Gauteng">Gauteng</option>
                    <option value="KwaZulu-Natal">KwaZulu-Natal</option>
                    <option value="Limpopo">Limpopo</option>
                    <option value="Mpumalanga">Mpumalanga</option>
                    <option value="Northern Cape">Northern Cape</option>
                    <option value="North West">North West</option>
                    <option value="Western Cape">Western Cape</option>
                  </select>
                </div>
              </div>
              <div class="col-6">
                <div class="col-12 mb-3 border-bottom">
                  <h3>COMPANY POSTAL ADDRESS</h3>
                  <!-- <p class="text-muted">
                                                                Must be a South African physical address and only one address -->
                  <p></p>
                </div>
                <div class="col-12 mb-3">
                  <label for="postal-address-field" class="form-label">Postal Address</label>
                  <div class="row">
                    <div class="col-12 mb-3">
                      <input type="text" class="form-control" id="postal-address-field" placeholder="South African physical address" name="postal_address">
                    </div>
                    <div class="col-12 mb-3">
                      <input type="text" class="form-control" id="postal-address-field" placeholder="Second line of your postal address" name="second_postal_address">
                    </div>
                  </div>
                </div>
                <div class="row">
                  <div class="col-6 mb-3">
                    <label for="suburb-postal-field" class="form-label">Suburb</label>
                    <input type="text" class="form-control" id="suburb-postal-field" name="suburb_postal">
                  </div>
                  <div class="col-6 mb-3">
                    <label for="postal-code-postal-field" class="form-label">Postal Code</label>
                    <input type="text" class="form-control" id="postal-code-postal-field" name="postal_code_postal">
                  </div>
                </div>
                <div class="col-12 mb-3">
                  <label for="province-postal-field" class="form-label">Province</label>
                  <select class="form-select" id="province-postal-field" name="province_postal">
                    <option value="Eastern Cape">Eastern Cape</option>
                    <option value="Free State">Free State</option>
                    <option value="Gauteng">Gauteng</option>
                    <option value="KwaZulu-Natal">KwaZulu-Natal</option>
                    <option value="Limpopo">Limpopo</option>
                    <option value="Mpumalanga">Mpumalanga</option>
                    <option value="Northern Cape">Northern Cape</option>
                    <option value="North West">North West</option>
                    <option value="Western Cape">Western Cape</option>
                  </select>
                </div>
              </div>
            </div>
          </div>
          <div class="col-4 mb-3">
            <h5> Company Registered Address</h5>
            <p> Must be a South African Physical Address </p>
            <h5> Company Postal Address</h5>
            <p> Must be a South African Address </p>
          </div>
        </div>
      </section>
    </div>
    <input type="button" name="previous" class="previous btn btn-dark" value="Previous">
    <input type="button" name="next" class="next btn btn-primary" value="Next" data-validate="address">
  </fieldset>
  <fieldset>
    <div class="form-card">
      <section>
        <div class="row mb-3">
          <div class="row">
            <div class="col-8 mb-3">
              <div class="row">
                <div class="col-12 mb-3 border-bottom">
                  <h3>NO. OF DIRECTORS</h3>
                </div>
                <div class="col-12 mb-3">
                  <label for="director-quantity-field" class="form-label">Director Quantity</label>
                  <input type="number" class="form-control" id="director-quantity-field" name="director_quantity" value="1">
                </div>
                <div class="col-12 mb-3">
                  <label for="shares-field" class="form-label">Number of Shares</label>
                  <input type="number" class="form-control" id="shares-field" name="shares_number" value="1000">
                </div>
                <div class="col-12 mb-3">
                  <label for="financial-year-end-field" class="form-label">Financial Year End</label>
                  <select class="form-select" id="financial-year-end-field" name="financial_year_end">
                    <option value="January">January</option>
                    <option value="February" selected="">February</option>
                    <option value="March">March</option>
                    <option value="April">April</option>
                    <option value="May">May</option>
                    <option value="June">June</option>
                    <option value="July">July</option>
                    <option value="August">August</option>
                    <option value="September">September</option>
                    <option value="October">October</option>
                    <option value="November">November</option>
                    <option value="December">December</option>
                  </select>
                </div>
              </div>
            </div>
            <div class="col-4 mb-3">
              <h5> Number of Shares </h5>
              <p> You can choose whatever amount of shares you want - we usually use 1000 shares</p>
              <h5> Financial Year End </h5>
              <p> Most companies use February so that it aligns with SARS tax years, but you can choose any year end.</p>
            </div>
          </div>
        </div>
      </section>
    </div>
    <input type="button" name="previous" class="previous btn btn-dark" value="Previous">
    <input type="button" name="next" class="next btn btn-primary" value="Next" data-callback="generateDirectorList" data-validate="numberOfDirectors">
  </fieldset>
  <fieldset>
    <div class="form-card">
      <section id="director-list-cont">
      </section>
    </div>
    <input type="button" name="previous" class="previous btn btn-dark" value="Previous">
    <input id="sa" name="sa" type="submit" class="btn btn-primary" value="Complete">
  </fieldset>
</form>

Name: mc-embedded-subscribe-formPOST https://elemisfreebies.us20.list-manage.com/subscribe/post?u=aa4947f70a475ce162057838d&id=b49ef47a9a

<form action="https://elemisfreebies.us20.list-manage.com/subscribe/post?u=aa4947f70a475ce162057838d&amp;id=b49ef47a9a" method="post" id="mc-embedded-subscribe-form2" name="mc-embedded-subscribe-form" class="validate dark-fields" target="_blank"
  novalidate="">
  <div id="mc_embed_signup_scroll2">
    <div class="mc-field-group input-group form-floating">
      <input type="email" value="" name="EMAIL" class="required email form-control" placeholder="Email Address" id="mce-EMAIL2">
      <label for="mce-EMAIL2">Email Address</label>
      <input type="submit" value="Join" name="subscribe" id="mc-embedded-subscribe2" class="btn btn-primary">
    </div>
    <div id="mce-responses2" class="clear">
      <div class="response" id="mce-error-response2" style="display:none"></div>
      <div class="response" id="mce-success-response2" style="display:none"></div>
    </div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
    <div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_ddc180777a163e0f9f66ee014_4b1bcfa0bc" tabindex="-1" value=""></div>
    <div class="clear"></div>
  </div>
</form>

Text Content

 * 

0872655104

hello@aptsolutions.co.za

 * 

0872655104

hello@aptsolutions.co.za




WHY CHOOSE US?
FREE COMPANY FORMA|

We provide accounting, payroll, tax, advisory and much more.

Get an Instant Quote Register Your Company



WHAT WE DO?


THE SERVICE WE OFFER IS SPECIFICALLY DESIGNED TO MEET YOUR NEEDS.

ACCOUNTING & TAXATION

Our Accounting & Taxation services include Bookkeeping, Accounting and Taxation
to minimize your business taxation and maximize your business profits.

Learn More

FREE COMPANY FORMATIONS

Let us register your *company for just R 780 or for **Free if you subscribe to
our monthly services. *Private company with a standard MOI (incl. name
reservation) **We will deduct the fee from your first months fees

Learn More

PAYROLL

Our Payroll Services include salary tax planning, full payroll outsourcing,
statutory returns submission to SARS (monthly, six-monthly & annually), UIF and
Department of Labour.

Learn More

MONTHLY REPORTING

Having accurate, up to date information is crucial to your business. Our
management accounting services provide you with a monthly summary of your
business finances.

Learn More


IS IT EASY TO JOIN?


WE WILL HAVE YOU SET UP IN JUST 3 SIMPLE STEPS...

1

GET AN INSTANT QUOTE

Get your instant quote to see how much you will be paying.

2

REGISTER WITH US

Once you happy with your qoute, complete the short online registration form.

3

RECEIVE A WARM WELCOME

We will get you setup and introduce you to your accountant.


JOIN OUR COMMUNITY


WE HAVE CLIENTS NATIONALWIDE. JOIN THEM BY USING OUR SERVICES AND GROW YOUR
BUSINESS.

Get an Instant Quote


COMPANY FACTS


WE LOVE OUR CLIENTS


16+

Years in Business


5

Provinces


150+

Company Formations

> “”
> 
> ROBYN GABRIELS
> 
> Pro Tech Distributors

> “”
> 
> VIJIE MOODLEY
> 
> Abacus Metals

> “”
> 
> MATTHEW PEREIRA
> 
> Matt Electronics

> “”
> 
> ROBYN GABRIELS
> 
> Pro Tech Distributors

> “”
> 
> VIJIE MOODLEY
> 
> Abacus Metals

> “”
> 
> MATTHEW PEREIRA
> 
> Matt Electronics

> “”
> 
> ROBYN GABRIELS
> 
> Pro Tech Distributors





GET IN TOUCH


NOT YET CONVINCED? CONTACT US FOR ANY INFORMATION.

ADDRESS

Cape Town,
South Africa

PHONE

(021) 012 5518

E-MAIL

hello@aptsolutions.co.za

INSTANT QUOTE

Your Name
Your Turnover 0 -300000 300000-1mil 1mil-5mil 5mil-15mil 15mil-30mil 30mil <
Enter Email
Do you want us to do Vat? No Yes
Telephone Number
Do you want us to manage payroll? No Weekly Fortnightly Monthly
Enter Employees Number
Business Type Company Partnership Sole Trader Close Corporation
Do you want us to do bookkeeping? No Yes
How many transactions per month?
We will never share your details with any third-party

HERE IS YOUR QUOTE


YOUR QUOTATION HAS BEEN CALCULATED AT




PRICE INCLUDES CLOUD ACCOUNTING SOFTWARE.

THIS QUOTE IS FOR YOUR CURRENT FINANCIAL/TAX YEAR (12 MONTHS). IF YOU ARE
JOINING US DURING YOUR CURRENT FINANCIAL/TAX YEAR, WE WILL CHARGE YOU A
BACKDATED FEE FOR PREVIOUS MONTHS ONCE EVERYTHING IS SET-UP.

Edit Details Sign me Up

STILL NOT SURE? THEN PLEASE CALL US ON 087 2655 104.

NB: IF YOU HAVE NOT RECEIVED YOUR EMAIL PLEASE CHECK YOUR JUNK FOLDER.

WE WILL NEVER SHARE YOUR DETAILS WITH ANY THIRD-PARTY


REGISTER YOUR PRIVATE COMPANY

PRIVATE COMPANY WITH A STANDARD MOI

 * Basic Details
 * Name Choices
 * Address
 * Number Of Directors
 * Directors List
 * Payment


First Name
Last Name
Phone Number
Email

INFORMATION

Please complete your contact information- you will then be charged R780, which
we will refund you if you sign up for our monthly Accounting Services.

By signing up you agree to APT Solutions' Terms and Conditions

Congratulations! Payment Successful
First Choice
Second Choice
Thrid Choice
Fourth Choice

NAME CHOICES

Please provide 4 company name options in order of preference. They will be
tested by CIPC in this order.

**NB

If all 4 of your company names are rejected, there is an additional cost of R100
for each set of 4 company names submitted.


COMPANY REGISTERED ADDRESS



Registered Address

Suburb
Postal Code
Province Eastern Cape Free State Gauteng KwaZulu-Natal Limpopo Mpumalanga
Northern Cape North West Western Cape


COMPANY POSTAL ADDRESS



Postal Address

Suburb
Postal Code
Province Eastern Cape Free State Gauteng KwaZulu-Natal Limpopo Mpumalanga
Northern Cape North West Western Cape

COMPANY REGISTERED ADDRESS

Must be a South African Physical Address

COMPANY POSTAL ADDRESS

Must be a South African Address


NO. OF DIRECTORS

Director Quantity
Number of Shares
Financial Year End January February March April May June July August September
October November December

NUMBER OF SHARES

You can choose whatever amount of shares you want - we usually use 1000 shares

FINANCIAL YEAR END

Most companies use February so that it aligns with SARS tax years, but you can
choose any year end.


Pay-Now

© 2021 APT Solutions.
All rights reserved.



GET IN TOUCH

Cape Town, South Africa hello@aptsolutions.co.za
(021) 012 5518

LEARN MORE

 * About Us
 * Our Story
 * Projects
 * Terms of Use
 * Privacy Policy

OUR NEWSLETTER

Subscribe to our newsletter to get our news & deals delivered to you.

Email Address