diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-01-29 13:18:10 -0800 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-01-29 13:18:10 -0800 |
commit | 733b3543d06fea12704118c93da3535e5ee8349f (patch) | |
tree | aa22359b998b2e92756068ff7908f8af505efdf7 | |
parent | 5543cd21c6ff323f3af427c77b1e1824e5677298 (diff) |
Put license text inside label to align it with "Remember me" label above it. Improve sentence.
-rw-r--r-- | actions/register.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/register.php b/actions/register.php index df64196da..01d94f488 100644 --- a/actions/register.php +++ b/actions/register.php @@ -426,11 +426,13 @@ class RegisterAction extends Action } $this->elementStart('li'); $this->element('input', $attrs); + $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license')); $this->text(_('My text and files are available under ')); $this->element('a', array('href' => common_config('license', 'url')), common_config('license', 'title'), _("Creative Commons Attribution 3.0")); $this->text(_(' except this private data: password, '. - 'email address, IM address, phone number.')); + 'email address, IM address, and phone number.')); + $this->elementEnd('label'); $this->elementEnd('li'); $this->elementEnd('ul'); $this->submit('submit', _('Register')); |