GET READY TO PUT A SPRING IN YOUR STEP

We want to make the application process as simple as possible so that you can get investing as quickly as possible.

So, here’s what to expect:

1

Pick an investment goal, such as a rainy day fund or a pension (new or a consolidation). We’ll match you with the best strategy and portfolio to meet your needs.

2

Add your details and finish your application. It takes a maximum of 15 minutes. We just need a few details and some identifying information. We need this to verify your details.

3

Receive your approval documentation and account number. We will send you an email with your welcome letter and everything you need to access your account and start investing.

4

Fund your account and watch your money grow. You'll recieve a unique initial deposit reference. Once we have received the funds, our investment managers will put it to work.

First, we’re going to verify your email, just to make sure that you can securely access your account going forward. We take data protection very seriously here at Spring.

Our team of investing experts are here for you every step of the way, feel free to use the chat service to talk to one of our team throughout your application.

Investing can increase your financial security far faster than traditional savings. Even when times are tough, investing is the best way to stay ahead and create financial security. 

Intrigued to see what your account could look like in 10 years?

Use our investment calculator to get a glimpse into what the future could look like, here’s how it works:

  1. Start Strong: Slide the initial investment amount to match your financial muscle. Whether you're starting with £100 or aiming for the big league with £1,000,000, find the perfect fit for your investment goals.

  2. Monthly growth power: Adjust the slider to set your monthly investment contribution. From £0 to £10,000. Decide how much power you want to pack into your investment journey.

  3. Portfolio Persona: Choose your investment adventure by picking between "Core Range," "Intermediate Mix," or "Managed Passive." Find the portfolio type that speaks to your investment aspirations and aligns with your financial goals. Not sure which one is right for you? Chat to our team now.

  4. What’s your risk appetite?: Select your risk by selecting "Low," "Medium," or "High,". Embrace the level of risk and potential rewards that match your investment style and desired returns.

Just hit the "Calculate" button, and within seconds, unveil the projected portfolio value after 10 years. Get ready to embark on your investment journey with confidence and clarity.

<!DOCTYPE html>
<html>
<head>
  <style>
    /* CSS styling goes here */
  </style>
</head>
<body>
  <div class="calculator">
    <div class="form-group">
      <label for="initial-investment-amount">Initial Investment Amount (£)</label>
      <input type="number" id="initial-investment-amount" min="100" max="1000000" step="100" required>
    </div>

    <div class="form-group">
      <label for="monthly-investment-amount">Monthly Contributions (£)</label>
      <input type="number" id="monthly-investment-amount" min="50" max="50000" step="50" required>
    </div>

    <div class="form-group">
      <label for="portfolio-type">Portfolio Type</label>
      <select id="portfolio-type" required>
        <option value="preservation">Preservation</option>
        <option value="generation">Generation</option>
      </select>
    </div>

    <div class="form-group">
      <label for="risk-appetite">Risk Appetite</label>
      <select id="risk-appetite" required>
        <option value="defensive">Defensive</option>
        <option value="balanced">Balanced</option>
        <option value="growth">Growth</option>
      </select>
    </div>

    <div class="form-group">
      <label for="investment-length">Investment Length (Years)</label>
      <input type="number" id="investment-length" min="0" max="30" step="1" required>
    </div>

    <button onclick="calculate()">Calculate</button>

    <div id="results"></div>
  </div>

  <script>
    function calculate() {
      const initialInvestmentAmount = parseInt(document.getElementById("initial-investment-amount").value);
      const monthlyInvestmentAmount = parseInt(document.getElementById("monthly-investment-amount").value);
      const portfolioType = document.getElementById("portfolio-type").value;
      const riskAppetite = document.getElementById("risk-appetite").value;
      const investmentLength = parseInt(document.getElementById("investment-length").value);

      // Perform the necessary calculations here
      const results = calculateResults(initialInvestmentAmount, monthlyInvestmentAmount, portfolioType, riskAppetite, investmentLength);

      // Display the results
      const resultsDiv = document.getElementById("results");
      resultsDiv.innerHTML = `
        <p>Poor Market Performance: £${results.poor.toFixed(2)}</p>
        <p>Expected Market Performance: £${results.expected.toFixed(2)}</p>
        <p>Good Market Performance: £${results.good.toFixed(2)}</p>
      `;
    }

    function calculateResults(initialInvestmentAmount, monthlyInvestmentAmount, portfolioType, riskAppetite, investmentLength) {
      // Perform the necessary calculations here
      // Replace with your own logic to calculate the desired outputs based on the given inputs

      // Placeholder values
      const poorPerformance = 1000;
      const expectedPerformance = 2000;
      const goodPerformance = 3000;

      return {
        poor: poorPerformance,
        expected: expectedPerformance,
        good: goodPerformance
      };
    }
  </script>
</body>
</html>