X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fregister.php;h=d2e54b634596e8ecf3f5077910fafbba65c32d60;hb=182aa9a101f31d476e4e1528f611778ef7f628dc;hp=fc729a29bfbb819bc4f0992ff8e3b9146fc65b2c;hpb=a39bb63ebdf1e1025abb5c506db2c0dd82a55773;p=quix0rs-gnu-social.git diff --git a/actions/register.php b/actions/register.php index fc729a29bf..d2e54b6345 100644 --- a/actions/register.php +++ b/actions/register.php @@ -47,7 +47,9 @@ class RegisterAction extends Action { $nickname = common_canonical_nickname($nickname); $email = common_canonical_email($email); - if (!Validate::email($email, true)) { + if (!$this->boolean('license')) { + $this->show_form(_t('You can\'t register if you don\'t agree to the license.')); + } else if (!Validate::email($email, true)) { $this->show_form(_t('Not a valid email address.')); } else if (!Validate::string($nickname, array('min_length' => 1, 'max_length' => 64, @@ -114,8 +116,12 @@ class RegisterAction extends Action { } function show_form($error=NULL) { + global $config; common_show_header(_t('Register')); + if ($error) { + common_element('div', 'error', $error); + } common_element_start('form', array('method' => 'POST', 'id' => 'login', 'action' => common_local_url('register'))); @@ -123,6 +129,16 @@ class RegisterAction extends Action { common_password('password', _t('Password')); common_password('confirm', _t('Confirm')); common_input('email', _t('Email')); + common_element_start('p'); + common_element('input', array('type' => 'checkbox', + 'id' => 'license', + 'name' => 'license', + 'value' => 'true')); + common_text(_t('My text and files are available under ')); + common_element('a', array(href => $config['license']['url']), + $config['license']['title']); + common_text(_t(' except this private data: password, email address, IM address, phone number.')); + common_element_end('p'); common_submit('submit', _t('Register')); common_element_end('form'); common_show_footer();