diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-28 13:04:38 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-28 13:04:38 -0400 |
commit | bd3f393f637c9870dee5a618368105206ad2231a (patch) | |
tree | 3981d2fee38a30acd40693ed7d5c8c8d7b4bdd26 /actions/register.php | |
parent | 0bc94b14c445b16d634b69759bffba20e819e23d (diff) |
move license label to _after_ the checkbox
darcs-hash:20080528170438-84dde-90edcb9248823988f70d8dbedf9a694a7bb732f5.gz
Diffstat (limited to 'actions/register.php')
-rw-r--r-- | actions/register.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/actions/register.php b/actions/register.php index fbff26af0..8ed5706f9 100644 --- a/actions/register.php +++ b/actions/register.php @@ -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'); |