move license label to _after_ the checkbox

darcs-hash:20080528170438-84dde-90edcb9248823988f70d8dbedf9a694a7bb732f5.gz
This commit is contained in:
Evan Prodromou 2008-05-28 13:04:38 -04:00
parent 0bc94b14c4
commit bd3f393f63
1 changed files with 4 additions and 4 deletions

View File

@ -127,16 +127,16 @@ class RegisterAction extends Action {
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_element_start('label', array('for' => 'license'));
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('label');
common_element('input', array('type' => 'checkbox',
'id' => 'license',
'name' => 'license',
'value' => 'true'));
common_element_end('p');
common_submit('submit', _t('Register'));
common_element_end('form');