Required filed in Email-based self registration form

Re: Required filed in Email-based self registration form

by Frank B -
Number of replies: 0

I think what you are looking to do is in /login/signup_form.php

on lines:


$mform->addElement('text', 'city', get_string('city'), 'maxlength="120" size="20"');

$mform->setType('city', PARAM_TEXT);

if (!empty($CFG->defaultcity)) {

$mform->setDefault('city', $CFG->defaultcity);

}

I've been looking for a way to make this required myself.