How to edit the Registration form

Permalink
Hi there! This is a repost of an unanswered question.

I want to add a mandatory checkbox at the end of the register form that states that user will comply with the Terms and Conditions of my website.

Thanks in advance
Do not I might need some technical help! :(

 
TooqInc replied on at Permalink Reply
TooqInc
Wow, you really did have 5 unanswered questions...

I think there are two options here:
1. You're likely editing the PHP page code on the log in page (and I can't be a lot of help here), or;
2. You can direct the user upon log in to the homepage, the member profile, or a custom page (yoursite.com/index.php/dashboard/system/registration/postlogin/). It would be pretty easy to redirect to a custom page after log in and that custom page would be easy to edit and make look like you want. Of course, you may not want to drive them here everytime.
3. Option three of two options: hope my answering pops you to the top of the forum again and someone else can provide a better answer.
JohntheFish replied on at Permalink Best Answer Reply
JohntheFish
A couple of possibilities for the t&c question:

- Use one of the cookie acceptance addons and change the text to be t&c acceptance.

- Add it as a user attribute that is mandatory on registration (that will allow them to enter yes or no), then write some code to add them to a group if accepted, remove if not. Then use permissions to restrict content according to the group. http://www.concrete5.org/marketplace/addons/registrant-group/... may be a good starting point for the code.