mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-11 18:37:33 -04:00
When we converted textboxes on Notify to govuk-frontend design system
style with @tombye , we did not remove the imports.
This work is now done in this commit.
Some things that will still stay in our repo for now:
textbox macro in our components folder and associated css
textboxes which are really textarea fields (🤷 how do they work)
textboxes on the styleguide page
We should revisit this when we convert textarea fields
to govuk-frontend.
34 lines
1013 B
HTML
34 lines
1013 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import sticky_page_footer %}
|
|
{% from "components/radios.html" import radios %}
|
|
{% from "components/live-search.html" import live_search %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
|
|
{% set page_title = "Accept our data sharing and financial agreement" %}
|
|
|
|
{% block per_page_title %}
|
|
{{ page_title }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
{{ page_header(
|
|
page_title,
|
|
back_link=url_for('main.request_to_go_live', service_id=current_service.id)
|
|
) }}
|
|
{% call form_wrapper() %}
|
|
<p class="govuk-body">
|
|
{{ form.organisations.label.text }}
|
|
</p>
|
|
{{ live_search(
|
|
target_selector='.multiple-choice',
|
|
show=True,
|
|
form=search_form,
|
|
label='Search by name',
|
|
autofocus=True)
|
|
}}
|
|
{{ radios(form.organisations, hide_legend=True) }}
|
|
{{ sticky_page_footer('Continue') }}
|
|
{% endcall %}
|
|
{% endblock %}
|