summaryrefslogtreecommitdiff
path: root/actions/register.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-19 12:28:45 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-01-19 12:28:45 +0000
commit264ab53953d529680cea4df31ed125710bb26988 (patch)
treef31c6addf124ff4b1fdfab587d9ddc05b5f19477 /actions/register.php
parentf2b06b8bbd56ce94d7b46ffcec36e2be3f260fe9 (diff)
parent838502dfd9894e409714c512f83179bab68446d7 (diff)
Merge branch 'uiredesign' of /var/www/trunk into uiredesign
Diffstat (limited to 'actions/register.php')
-rw-r--r--actions/register.php32
1 files changed, 28 insertions, 4 deletions
diff --git a/actions/register.php b/actions/register.php
index b15aea08e..159daaa73 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -332,22 +332,32 @@ class RegisterAction extends Action
}
$this->elementStart('form', array('method' => 'post',
- 'id' => 'login',
+ 'id' => 'form_register',
+ 'class' => 'form_settings',
'action' => common_local_url('register')));
-
+ $this->elementStart('fieldset');
+ $this->element('legend', null, 'Account settings');
$this->hidden('token', common_session_token());
if ($code) {
$this->hidden('code', $code);
}
+ $this->elementStart('ul', 'form_data');
+ $this->elementStart('li');
$this->input('nickname', _('Nickname'), $this->trimmed('nickname'),
_('1-64 lowercase letters or numbers, '.
'no punctuation or spaces. Required.'));
+ $this->elementEnd('li');
+ $this->elementStart('li');
$this->password('password', _('Password'),
_('6 or more characters. Required.'));
+ $this->elementEnd('li');
+ $this->elementStart('li');
$this->password('confirm', _('Confirm'),
_('Same as password above. Required.'));
+ $this->elementEnd('li');
+ $this->elementStart('li');
if ($invite && $invite->address_type == 'email') {
$this->input('email', _('Email'), $invite->address,
_('Used only for updates, announcements, '.
@@ -357,41 +367,55 @@ class RegisterAction extends Action
_('Used only for updates, announcements, '.
'and password recovery'));
}
+ $this->elementEnd('li');
+ $this->elementStart('li');
$this->input('fullname', _('Full name'),
$this->trimmed('fullname'),
_('Longer name, preferably your "real" name'));
+ $this->elementEnd('li');
+ $this->elementStart('li');
$this->input('homepage', _('Homepage'),
$this->trimmed('homepage'),
_('URL of your homepage, blog, '.
'or profile on another site'));
+ $this->elementEnd('li');
+ $this->elementStart('li');
$this->textarea('bio', _('Bio'),
$this->trimmed('bio'),
_('Describe yourself and your '.
'interests in 140 chars'));
+ $this->elementEnd('li');
+ $this->elementStart('li');
$this->input('location', _('Location'),
$this->trimmed('location'),
_('Where you are, like "City, '.
'State (or Region), Country"'));
+ $this->elementEnd('li');
+ $this->elementStart('li', array('id' => 'settings_rememberme'));
$this->checkbox('rememberme', _('Remember me'),
$this->boolean('rememberme'),
_('Automatically login in the future; '.
'not for shared computers!'));
- $this->elementStart('p');
+ $this->elementEnd('li');
$attrs = array('type' => 'checkbox',
'id' => 'license',
+ 'class' => 'checkbox',
'name' => 'license',
'value' => 'true');
if ($this->boolean('license')) {
$attrs['checked'] = 'checked';
}
+ $this->elementStart('li');
$this->element('input', $attrs);
$this->text(_('My text and files are available under '));
$this->element('a', array('href' => common_config('license', 'url')),
$config['license']['title']);
$this->text(_(' except this private data: password, '.
'email address, IM address, phone number.'));
- $this->elementEnd('p');
+ $this->elementEnd('li');
+ $this->elementEnd('ul');
$this->submit('submit', _('Register'));
+ $this->elementEnd('fieldset');
$this->elementEnd('form');
}