Skip to content

Commit

Permalink
Merge pull request #290 from co-cddo/UCD-19_remove_autofill_org_name
Browse files Browse the repository at this point in the history
Set the autocomplete to false on registrar_organisation.
  • Loading branch information
jinnashravan authored Nov 20, 2024
2 parents 6d5bcce + c5590c5 commit fe8447e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion request_a_govuk_domain/request/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ def __init__(self, *args, **kwargs):
self.helper.label_size = Size.SMALL
self.helper.layout = Layout(
Fieldset(
DomainsHTML('<h2 class="govuk-heading-m">Organisation name</h2>'),
DomainsHTML(
'<h2 class="govuk-heading-m" autocomplete="false">Organisation name</h2>' # pragma: allowlist secret
),
Field.text("registrar_organisation"),
),
Fieldset(
Expand Down

0 comments on commit fe8447e

Please sign in to comment.