]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Put license text inside label to align it with "Remember me" label above it. Improve...
authorZach Copley <zach@controlyourself.ca>
Thu, 29 Jan 2009 21:18:10 +0000 (13:18 -0800)
committerZach Copley <zach@controlyourself.ca>
Thu, 29 Jan 2009 21:18:10 +0000 (13:18 -0800)
actions/register.php

index df64196da2c91f057bbc2b8c32cae13a74b6e975..01d94f488421760861c9f2712565b5e9b7f21ef7 100644 (file)
@@ -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'));