diff --git a/view/template/acquisition/auto-verify.php b/view/template/acquisition/auto-verify.php index 717e4ac8..1107642e 100644 --- a/view/template/acquisition/auto-verify.php +++ b/view/template/acquisition/auto-verify.php @@ -19,7 +19,7 @@ fetch(url) .then(response => response.json()) - .then((response) => { + .then(response => { if (response.error) throw Error(response.error); @@ -35,7 +35,7 @@ }); } - const verifyCallback = function(response) { + const verifyCallback = response => { const urlParams = new URLSearchParams(window.location.search); const email = urlParams.get('email'); @@ -64,7 +64,7 @@
-
+

Click the captcha to continue...


diff --git a/view/template/acquisition/verify.php b/view/template/acquisition/verify.php index 839a83eb..25d41259 100644 --- a/view/template/acquisition/verify.php +++ b/view/template/acquisition/verify.php @@ -43,7 +43,7 @@
-
+

Click the captcha to continue...


diff --git a/web/scss/_layout.scss b/web/scss/_layout.scss index a07e8ab4..c2290366 100644 --- a/web/scss/_layout.scss +++ b/web/scss/_layout.scss @@ -185,6 +185,12 @@ video { margin-right: auto; margin-left: auto; + &.inner-wrap--center { + display: flex; + justify-content: center; + text-align: center; + } + &.inner-wrap--hero { align-items: center; display: flex;