Reputation: 39
I am new to Moodle. My client need something special in SignUp form. I want to know how I can change code of signup form which is created through the Moodle Dashboard?
Upvotes: 3
Views: 6921
Reputation: 491
Option 1 (for developers). Create your own authentication plugin https://docs.moodle.org/dev/Authentication_plugins and use it instead of standard auth_email for self-registration
Option 2 (for administrators). Create custom profile fields and add them to the registration form. This does not require developer but might not be flexible enough.
Upvotes: 3
Reputation: 19
You can change signup form in [your Moodle www dir]/login/signup_form.php
Maybe Form API docs will be helpful for you.
Upvotes: 1