diff --git a/app/templates/views/email-branding/manage-branding.html b/app/templates/views/email-branding/manage-branding.html index ca19c8f53..965ea3c81 100644 --- a/app/templates/views/email-branding/manage-branding.html +++ b/app/templates/views/email-branding/manage-branding.html @@ -24,7 +24,7 @@
Logos should be PNG files, 108px high
- {{ file_upload(form.file, button_text='{} logo'.format('Update' if email_branding else 'Upload')) }} + {{ file_upload(form.file, allowed_file_extensions='.png', button_text='{} logo'.format('Update' if email_branding else 'Upload')) }} {% call form_wrapper() %}Logos should be SVG files, cropped to artwork bounds and with all fonts outlined.
- {{ file_upload(file_upload_form.file, button_text='{} logo'.format('Update' if is_update else 'Upload')) }} + {{ file_upload(file_upload_form.file, allowed_file_extensions='.svg', button_text='{} logo'.format('Update' if is_update else 'Upload')) }} {% call form_wrapper() %}