{% extends 'information-page.njk' %}
{% from "button/macro.njk" import govukButton %}

{% set title = "Agree to terms and send application" %}

{% block pageContent %}
    <p class="govuk-body">By sending the application you agree that you have given complete and correct information.</p>
    <p class="govuk-body">If you are making this application on behalf of another person, you confirm that you have their permission to do so. By sending the application, they agree they will:</p>
    <ul class="govuk-list govuk-list--bullet">
      <li>will uphold any conditions applied to my licence if granted</li>
      <li>will abide by the terms and conditions of this service</li>
      <li>will abide by the <a href="https://www.gov.uk/government/publications/terms-and-conditions-for-paying-for-a-wildlife-licence">terms and conditions of paying for wildlife licences (opens in new tab)</a> and agree to pay relevant charges</li>
    </ul>
    <p class="govuk-body">By sending the application you confirm that:</p>
    <ul class="govuk-list govuk-list--bullet">
          <li>an appropriate ecologist has been involved in the application and design of any mitigations</li>
          <li>the ecologist supports the application</li>
          <li>the ecologist is content that the proposed methods, actions and mitigation are appropriate to address the findings of the ecologist’s site assessment</li>
          <li>you will report any actions you took using this licence within 2 weeks of your licence expiring, even if you have taken no action</li>
          <li>you will pay any charges that apply</li>
     </ul>
    {{ govukButton({
        attributes: { id: "continue" },
        preventDoubleClick: true,
        name: 'continue',
        text: 'I agree - send my application',
        classes: "govuk-!-margin-top-5"
    })}}
{% endblock %}
