Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark interested party fields as optional #149

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}) %}
{{ govukInput({
label: {
text: "What is the email address for your team?",
text: "What is the email address for your team? (optional)",
classes: "govuk-label--s"
},
hint: {
Expand All @@ -48,7 +48,7 @@
}) %}
{{ govukInput({
label: {
text: "Full name of responsible officer",
text: "Full name of responsible officer (optional)",
classes: "govuk-label--s"
},
classes: "govuk-!-width-one-half",
Expand All @@ -61,7 +61,7 @@

{{ govukInput({
label: {
text: "Telephone number for responsible officer",
text: "Telephone number for responsible officer (optional)",
classes: "govuk-label--s"
},
classes: "govuk-!-width-one-half",
Expand All @@ -86,7 +86,7 @@
name: "responsibleOrganisation",
fieldset: {
legend: {
text: "What organisation is the responsible officer part of?",
text: "What organisation is the responsible officer part of? (optional)",
isPageHeading: false,
classes: "govuk-fieldset__legend--s"
}
Expand Down Expand Up @@ -143,7 +143,7 @@

{% call govukFieldset({
legend: {
text: "What is the address of the responsible organisation?",
text: "What is the address of the responsible organisation? (optional)",
classes: "govuk-fieldset__legend--s",
isPageHeading: false
}
Expand Down Expand Up @@ -212,7 +212,7 @@

{{ govukInput({
label: {
text: "Telephone number for responsible organisation",
text: "Telephone number for responsible organisation (optional)",
classes: "govuk-label--s"
},
classes: "govuk-!-width-one-half",
Expand All @@ -227,7 +227,7 @@

{{ govukInput({
label: {
text: "Email address for responsible organisation",
text: "Email address for responsible organisation (optional)",
classes: "govuk-label--s"
},
classes: "govuk-!-width-one-half",
Expand Down