diff --git a/mod/zregister.php b/mod/zregister.php index b683a9d85..7a8d67e78 100644 --- a/mod/zregister.php +++ b/mod/zregister.php @@ -12,9 +12,9 @@ function zregister_init(&$a) { $email = $_REQUEST['email']; if(! allowed_email($email)) - $result['message'] = t('Your email domain is not among those allowed on this site.'); + $result['message'] = t('Your email domain is not among those allowed on this site'); if((! valid_email($email)) || (! validate_email($email))) - $result['message'] .= t('Not a valid email address.') . EOL; + $result['message'] .= t('Not a valid email address') . EOL; if($result['message']) $result['error'] = true; @@ -23,8 +23,54 @@ function zregister_init(&$a) { killme(); } + $pw1 = t("Password too short"); + $pw2 = t("Passwords do not match"); + $a->page['htmlhead'] .= <<< EOT + + +EOT; } diff --git a/view/mod_zregister.css b/view/mod_zregister.css index 160b9ce4b..2edb9e9a9 100644 --- a/view/mod_zregister.css +++ b/view/mod_zregister.css @@ -21,7 +21,13 @@ h2 { padding: 5px; } +.zregister-feedback { + float: left; + margin-left: 5px; +} + .zregister-field-end { clear: both; margin-bottom: 20px; } +