{% extends "access_grant_funding/base.html" %} {% from "govuk_frontend_jinja/components/notification-banner/macro.html" import govukNotificationBanner %} {% from "govuk_frontend_jinja/components/back-link/macro.html" import govukBackLink %} {% set page_title = "Access grant funding" %} {% block beforeContent %} {{ govukBackLink({ "text": "Back", "href": url_for("access_grant_funding.public_sign_up_start_page", grant_slug=grant.slug, collection_slug=collection.slug), }) }} {% endblock %} {% block content %}
{% if link_expired %} {{ govukNotificationBanner( params={ "titleText": "Link expired", "text": "Your link has expired. Request a new link to sign in." } ) }} {% endif %} {% set email_label_html %} {{ grant.name }} Enter your work email address {% endset %}
{{ form.csrf_token }} {{ form.email_address( params={ "type": "email", "autocomplete": "email", "spellcheck": false, "classes": "govuk-input--width-20", "label": { "html": email_label_html, "isPageHeading": true, "classes": "govuk-label--xl" }, "hint": {"text": "You’ll need to verify your email address - we’ll only use it if you are eligible to apply"} } ) }} {{ form.submit(params={"text": "Continue"}) }}
{% endblock content %}