{% extends "layout.njk" %}
{% from "button/macro.njk" import govukButton %}
{% from "panel/macro.njk" import govukPanel %}
{% from "fieldset/macro.njk" import govukFieldset %}

{% block content %}
<div class="govuk-grid-row">
    <div class="govuk-grid-column-two-thirds">

        <form method="post" novalidate>
            {% call govukFieldset({}) %}

              {{ govukPanel({
                titleText: "Copy of licence sent"
              }) }}

              <p class="govuk-body">
               A copy of the licence has been emailed to the licence holder and the ecologist.
              </p>

               {{ govukButton({
                  attributes: { id: "continue" },
                  preventDoubleClick: true,
                  name: 'continue',
                  text: 'View licences and applications',
                  classes: "govuk-!-margin-top-5"
               }) }}
               <input type="hidden" name="crumb" value="{{crumb}}"/>
            {% endcall %}
        </form>
    </div>
</div>
{% endblock %}
