eu-west-3.vat-calc.net Open in urlscan Pro
2a05:d012:4d8:683d:e7d9:29ff:e948:4ab1  Public Scan

URL: https://eu-west-3.vat-calc.net/
Submission: On December 28 via api from US — Scanned from US

Form analysis 1 forms found in the DOM

Name: calcform

<form name="calcform" id="calcform" autocomplete="off">
  <div class="calculator">
    <div class="form-group">
      <label for="Text1">Initial Investment Amount</label>
      <div class="input-group">
        <div class="input-group-prepend">
          <span class="input-group-text orange" id="cur1">£</span>
        </div>
        <input type="number" min="0" step="any" id="Text1" autofocus="" placeholder="1000" class="form-control">
        <div class="input-group-append">
          <button type="button" onclick="OnClear(0)" class="btn btn-outline-secondary b-radius-right orange">×</button>
        </div>
      </div>
    </div>
    <div class="form-group">
      <label for="Text2">Interest Rate</label>
      <div class="input-group">
        <input type="number" step="any" id="Text2" class="form-control" placeholder="6">
        <div class="input-group-append">
          <span class="input-group-text orange b-radius-right">%</span>
        </div>
        <div class="input-group-append ml-1">
          <select id="Select2" class="form-control">
            <option>compounded monthly</option>
            <option>compounded quarterly</option>
            <option selected="">compounded yearly</option>
          </select>
        </div>
      </div>
    </div>
    <div class="form-group">
      <label for="Text4">Investment Time</label>
      <div class="input-group">
        <input type="number" min="1" step="any" id="Text4" class="form-control b-radius-right" placeholder="10">
        <div class="input-group-append ml-1">
          <select id="Select4" name="Select4" class="form-control">
            <option>Days</option>
            <option>Weeks</option>
            <option>Months</option>
            <option>Quarters</option>
            <option selected="selected">Years</option>
          </select>
        </div>
      </div>
    </div>
    <div class="form-group">
      <label for="Text3">Contribution Amount (optional)</label>
      <div class="input-group">
        <div class="input-group-prepend">
          <span class="input-group-text orange" id="cur2">£</span>
        </div>
        <input type="number" step="any" id="Text3" placeholder="0" class="form-control">
        <div class="input-group-append">
          <button type="button" onclick="OnClear(1)" class="btn btn-outline-secondary b-radius-right orange">×</button>
        </div>
        <div class="input-group-append ml-1">
          <select id="Select3" class="form-control">
            <option>monthly</option>
            <option>quarterly</option>
            <option selected="">yearly</option>
          </select>
        </div>
      </div>
    </div>
    <div id="addpaydiv" class="form-group mb-3">
      <label for="addpay-start" class="row ml-0">Additional contribution at compounding period</label>
      <div class="btn-group btn-group-toggle row ml-0" data-toggle="buttons">
        <label class="btn btn-primary active">
          <input type="radio" name="addpay" id="addpay-start" checked=""> Start </label>
        <label class="btn btn-primary">
          <input type="radio" name="addpay" id="addpay-end"> End </label>
      </div>
    </div>
    <div class="form-row mt-4 mb-3">
      <div class="col">
        <button type="button" onclick="OnCalc()" class="btn btn-success btn-lg w-100">= Calculate</button>
      </div>
      <div class="col">
        <button type="button" onclick="OnClear(2)" class="btn btn-danger btn-lg w-100"><span>×</span> Reset</button>
      </div>
    </div>
    <div class="form-row">
      <div class="col-12">
        <label class="c_orange f-20">Result:</label>
        <div class="other_things">
          <table class="table table-bordered result_table table-sm mb-3">
            <tbody>
              <tr>
                <td>Invested Amount:</td>
                <td><span id="inv_amt" class="fw-semibold"></span></td>
              </tr>
              <tr>
                <td>Interest Earned:</td>
                <td><span id="int_earned" class="fw-semibold"></span></td>
              </tr>
              <tr>
                <td class="font-weight-bold f-18 c_maroon">Maturity Value:</td>
                <td><span id="m_value" class="font-weight-bold f-18 c_maroon"></span></td>
              </tr>
              <tr>
                <td>Total Yield:</td>
                <td><span id="t_yield" class="fw-semibold"></span></td>
              </tr>
            </tbody>
          </table>
        </div>
        <div class="form-group mt-3 d-none result">
          <label>Growth Over Time:</label>
          <div id="piechart" class="charts mb-3"></div>
          <div id="columnchart" class="charts"></div>
        </div>
        <div id="tbldiv" class="form-group mt-3 text-center d-none result">
          <button type="button" class="btn btn-primary orange" data-toggle="modal" data-target="#exampleModal">Compound Interest Table →</button>
          <div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
            <div class="modal-dialog" role="document">
              <div class="modal-content">
                <div class="modal-header">
                  <h5 class="modal-title" id="exampleModalLabel">Compound Interest Table</h5>
                  <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                    <span aria-hidden="true">×</span>
                  </button>
                </div>
                <div class="modal-body">
                  <table class="table table-bordered table-sm table-striped" id="tbl">
                    <tbody>
                      <tr class="thead-dark">
                        <th>Period No.</th>
                        <th>Payment</th>
                        <th>Balance</th>
                      </tr>
                    </tbody>
                  </table>
                </div>
                <div class="modal-footer">
                  <button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

Text Content

COMPOUND INTEREST CALCULATOR

The compound interest calculator is designed to discover the potential growth of
your savings or investments over time.

Initial Investment Amount
£
×
Interest Rate
%
compounded monthly compounded quarterly compounded yearly
Investment Time
Days Weeks Months Quarters Years
Contribution Amount (optional)
£
×
monthly quarterly yearly
Additional contribution at compounding period
Start End
= Calculate
× Reset
Result:

Invested Amount: Interest Earned: Maturity Value: Total Yield:

Growth Over Time:


Compound Interest Table →

COMPOUND INTEREST TABLE

×

Period No. Payment Balance

Close
 * Compound Interest Formula
 * Simple Interest Calculator
 * Interest Rate Calculator



Privacy Disclaimer Contact

Copyright © 2023 | All Rights Reserved.


x
x