From 20ee0064aeaf9e0fdb7f0ffd30588889a7e74ba2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=9D=E3=83=BC=E3=83=AB=20=E3=82=A6=E3=82=A7=E3=83=83?= =?UTF-8?q?=E3=83=96?= Date: Thu, 21 Mar 2019 13:08:20 -0500 Subject: [PATCH] Captcha fix? And, design --- view/template/acquisition/auto-verify.php | 6 +++--- view/template/acquisition/verify.php | 2 +- web/scss/_layout.scss | 6 ++++++ 3 files changed, 10 insertions(+), 4 deletions(-) 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;