diff --git a/app/main/forms.py b/app/main/forms.py index 19cc8498f..d730293ed 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -1695,7 +1695,7 @@ class SVGFileUpload(StripWhitespaceForm): class ServiceLetterBrandingDetails(StripWhitespaceForm): - name = StringField('Name of brand', validators=[DataRequired()]) + name = GovukTextInputField('Name of brand', validators=[DataRequired()]) class PDFUploadForm(StripWhitespaceForm): diff --git a/app/templates/views/letter-branding/manage-letter-branding.html b/app/templates/views/letter-branding/manage-letter-branding.html index 98104192b..c60a136b4 100644 --- a/app/templates/views/letter-branding/manage-letter-branding.html +++ b/app/templates/views/letter-branding/manage-letter-branding.html @@ -28,7 +28,9 @@ {{ file_upload(file_upload_form.file, button_text='{} logo'.format('Update' if is_update else 'Upload')) }} {% call form_wrapper() %}