CC-2425:Tweak phone hom

- done
This commit is contained in:
James 2011-06-26 00:45:02 -04:00
parent b83420874c
commit 194ad31c9f
3 changed files with 52 additions and 19 deletions

View file

@ -136,6 +136,13 @@ class Application_Form_RegisterAirtime extends Zend_Form
'ViewHelper'
)
));
// checkbox for privacy policy
$checkboxPrivacy = new Zend_Form_Element_Checkbox("Privacy");
$checkboxPrivacy->setLabel("By checking this box, I agree to Sourcefabric's <a id=\"link_to_privacy\" href=\"\">privacy policy</a>.")
->setDecorators(array('ViewHelper'))
->setValue(1);
$this->addElement($checkboxPrivacy);
}
}