diff options
Diffstat (limited to 'src/views/pages/users/new.html.php')
-rw-r--r-- | src/views/pages/users/new.html.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/views/pages/users/new.html.php b/src/views/pages/users/new.html.php index 62a0f09..8b6bdf8 100644 --- a/src/views/pages/users/new.html.php +++ b/src/views/pages/users/new.html.php @@ -28,6 +28,12 @@ if (in_array('no pw', $VARS['errors'])) { $password = ''; } $t->inputNewPassword('auth_password','Password', $password); + +if (in_array('no email', $VARS['errors'])) { + $t->inputP("You must provide an email address.", true); +} +$t->inputText('user_email', 'Email Address', + 'This is so that we can contact you. (duh).', $VARS['email']); $t->closeFieldset(); foreach ($VARS['antispam_html'] as $html) { |