magento - Add terms and condition to the new account registration -
how can add checkbox , content of terms , condition when user create new account.
the file talking register.phtml
<li class="control"> <div class="input-box"> <input type="checkbox" id="privacy_policy" name="privacy_policy" value="1" title="<?php echo $this->__('accept privacy policy') ?>" class="checkbox required-entry"> </div> <label for="is_subscribed"><?php echo $this->__('accept privacy policy') ?> (<a href="<?php echo mage::helper('cms/page')->getpageurl( 6 ) ?>"><?php echo $this->__('privacy policy'); ?></a>)</label> </li>
this works great, thanks!