OpenID form settings markup

This commit is contained in:
sarven 2009-01-17 00:06:31 +00:00
parent 0a5125675b
commit 2561199e59
1 changed files with 10 additions and 5 deletions

View File

@ -85,26 +85,31 @@ class OpenidsettingsAction extends SettingsAction
$user = common_current_user();
$this->elementStart('form', array('method' => 'post',
'id' => 'openidadd',
'id' => 'form_openid_add',
'class' => 'form_settings',
'action' =>
common_local_url('openidsettings')));
$this->elementStart('fieldset');
$this->element('legend', null, _('Add OpenID'));
$this->hidden('token', common_session_token());
$this->element('h2', null, _('Add OpenID'));
$this->element('p', null,
$this->element('p', 'form_guide',
_('If you want to add an OpenID to your account, ' .
'enter it in the box below and click "Add".'));
$this->elementStart('p');
$this->elementStart('ul', 'form_datas');
$this->elementStart('li');
$this->element('label', array('for' => 'openid_url'),
_('OpenID URL'));
$this->element('input', array('name' => 'openid_url',
'type' => 'text',
'id' => 'openid_url'));
$this->elementEnd('li');
$this->elementEnd('ul');
$this->element('input', array('type' => 'submit',
'id' => 'add',
'name' => 'add',
'class' => 'submit',
'value' => _('Add')));
$this->elementEnd('p');
$this->elementEnd('fieldset');
$this->elementEnd('form');
$oid = new User_openid();