From 0cdaf3e155db84f8b6319406038cc889357fd5d7 Mon Sep 17 00:00:00 2001 From: sarven Date: Sat, 24 Jan 2009 03:18:34 +0000 Subject: [PATCH] Invitation markup and style --- actions/invite.php | 15 +++++++++++---- theme/base/css/display.css | 3 ++- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/actions/invite.php b/actions/invite.php index f4ad2f7c55..df6e3b7147 100644 --- a/actions/invite.php +++ b/actions/invite.php @@ -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'); } diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 17700e64e3..bee8d829a2 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -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; }