Display terms of use on registration page

Vishal Rao

Member
Which template would I need to edit to display the Terms of Use in a Textarea box on the Registration page, instead of a link. I have a fairly stringent terms of use and would want the member to read it before registering. I believe hardly anybody would click on the terms of use link to read it.
 
Template modification system. Anyways, you have to edit register_form and register_facebook and add singing like this:

Code:
<div style="height:400px; width:750px; overflow: scroll; border:1px solid black;">
{xen:phrase terms_of_service_and_rules}
	
{xen:phrase terms_rules_text} 
	</div>

Add this wherever in the template you want to show the terms.
 
Top Bottom