From 57d0c74506e78e85f17af42af81433abfe96b844 Mon Sep 17 00:00:00 2001 From: Walter Tamboer Date: Wed, 19 Mar 2014 22:33:48 +0100 Subject: [PATCH] Added links --- .../src/PixPolSubdomainAccount/Form/SignUpForm.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/module/PixPolSubdomainAccount/src/PixPolSubdomainAccount/Form/SignUpForm.php b/module/PixPolSubdomainAccount/src/PixPolSubdomainAccount/Form/SignUpForm.php index 5121359..1fc5278 100644 --- a/module/PixPolSubdomainAccount/src/PixPolSubdomainAccount/Form/SignUpForm.php +++ b/module/PixPolSubdomainAccount/src/PixPolSubdomainAccount/Form/SignUpForm.php @@ -89,8 +89,11 @@ private function addEmailValidationElement() private function addAgreeElement($name = 'agree') { + $privacyUrl = '/company/legal/privacy-policy'; + $termsOfUseUrl = '/company/legal/terms-of-use'; + $agreeElement = new Checkbox($name); - $agreeElement->setLabel('I agree to the Terms of Use and Privacy Policy.'); + $agreeElement->setLabel('I agree to the Terms of Use and Privacy Policy.'); $agreeElement->setCheckedValue('agreed'); $agreeElement->setAttribute('id', $name); $this->add($agreeElement);