Invitation markup and style

This commit is contained in:
sarven 2009-01-24 03:18:34 +00:00
parent 4980f654a8
commit 0cdaf3e155
2 changed files with 13 additions and 5 deletions

View File

@ -167,20 +167,27 @@ class InviteAction extends Action
function showInviteForm()
{
$this->elementStart('form', array('method' => 'post',
'id' => 'invite',
'id' => 'form_invite',
'class' => 'form_settings',
'action' => common_local_url('invite')));
$this->elementStart('fieldset');
$this->element('legend', null, 'Send an invitation');
$this->hidden('token', common_session_token());
$this->elementStart('ul', 'form_data');
$this->elementStart('li');
$this->textarea('addresses', _('Email addresses'),
$this->trimmed('addresses'),
_('Addresses of friends to invite (one per line)'));
$this->elementEnd('li');
$this->elementStart('li');
$this->textarea('personal', _('Personal message'),
$this->trimmed('personal'),
_('Optionally add a personal message to the invitation.'));
$this->elementEnd('li');
$this->elementEnd('ul');
$this->submit('send', _('Send'));
$this->elementEnd('fieldset');
$this->elementEnd('form');
}

View File

@ -152,7 +152,8 @@ font-weight:bold;
#form_tag_user legend,
#form_remote_subscribe legend,
#form_openid_login legend,
#form_search legend {
#form_search legend,
#form_invite legend {
display:none;
}