2019-07-02 09:49:00 +01:00
|
|
|
{% extends "withoutnav_template.html" %}
|
2019-04-29 11:44:05 +01:00
|
|
|
{% from "components/page-header.html" import page_header %}
|
2018-02-08 12:19:21 +00:00
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2018-02-08 12:19:21 +00:00
|
|
|
|
2018-02-08 15:41:31 +00:00
|
|
|
{% block per_page_title %}
|
2023-01-05 21:33:15 -05:00
|
|
|
New organization
|
2018-02-08 12:19:21 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2019-10-11 16:44:17 +01:00
|
|
|
{% block main %}
|
|
|
|
|
<div class="govuk-width-container">
|
2019-07-02 09:49:00 +01:00
|
|
|
<div class="navigation-service">
|
2023-07-12 12:09:44 -04:00
|
|
|
<a href="{{ url_for('.organizations') }}" class="govuk-link govuk-link--no-visited-state navigation-service-back-to">All organizations</a>
|
2019-12-06 07:53:46 +00:00
|
|
|
<a href="{{ url_for('main.choose_account') }}" class="govuk-link govuk-link--no-visited-state navigation-service-switch">Switch service</a>
|
2019-07-02 09:49:00 +01:00
|
|
|
</div>
|
2018-02-08 12:19:21 +00:00
|
|
|
|
2020-02-19 11:57:15 +00:00
|
|
|
<div class="govuk-grid-row">
|
2020-02-19 12:53:59 +00:00
|
|
|
<div class="govuk-grid-column-one-quarter">
|
2019-10-11 16:44:17 +01:00
|
|
|
|
2019-07-02 09:49:00 +01:00
|
|
|
</div>
|
2020-02-20 16:55:56 +00:00
|
|
|
<div class="govuk-grid-column-three-quarters">
|
2019-10-11 16:44:17 +01:00
|
|
|
<main class="govuk-main-wrapper column-main govuk-!-padding-top-0 govuk-!-padding-bottom-0" id="main-content" role="main" >
|
|
|
|
|
{% block beforeContent %}{% endblock %}
|
|
|
|
|
{% block content %}
|
2023-01-05 21:33:15 -05:00
|
|
|
{{ page_header('New organization') }}
|
2019-10-11 16:44:17 +01:00
|
|
|
{% call form_wrapper() %}
|
2020-08-04 16:32:40 +01:00
|
|
|
{{ form.name }}
|
2023-07-12 12:09:44 -04:00
|
|
|
{{ form.organization_type }}
|
2019-10-11 16:44:17 +01:00
|
|
|
{{ page_footer('Save') }}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2019-07-02 09:49:00 +01:00
|
|
|
</div>
|
2018-02-12 09:26:13 +00:00
|
|
|
|
2018-02-08 12:19:21 +00:00
|
|
|
{% endblock %}
|