diff options
author | Matthew Somerville <matthew@mysociety.org> | 2020-06-09 17:26:10 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2020-06-09 17:26:10 +0100 |
commit | 6b2af7944bb7d07411fe9375fef535c8248b46d1 (patch) | |
tree | 0a8d6b123db4e3ffd102ef9713d3301d14988cce | |
parent | 931f391ddc521a5dc76a2747a1cf3663431631e8 (diff) |
[fixmystreet.com] Include script nonce in new script element.
-rw-r--r-- | templates/web/fixmystreet.com/auth/form_extra.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/fixmystreet.com/auth/form_extra.html b/templates/web/fixmystreet.com/auth/form_extra.html index 8e96b447c..92cc31050 100644 --- a/templates/web/fixmystreet.com/auth/form_extra.html +++ b/templates/web/fixmystreet.com/auth/form_extra.html @@ -1,4 +1,4 @@ [% IF c.cobrand.requires_recaptcha %] - <script src="https://www.google.com/recaptcha/api.js" async defer></script> + <script nonce="[% csp_nonce %]" src="https://www.google.com/recaptcha/api.js" async defer></script> <div class="g-recaptcha" data-sitekey="[% c.config.RECAPTCHA.site_key %]"></div> [% END %] |