<?php
/**
* send_invitations_form
* arguments: $form
*/
global $theme;
add_css(get_path('theme', $theme) . '/forms.css');
?>
<ul>
<li class="required">
<label>
<?php echo t('Email Addresses') ?>:
</label>
<div class="fieldgroup">
<p class="instructions"><?php echo t('Separated each with a comma.') ?></p>
<textarea rows="5" cols="50" name="emailRecipients"></textarea>
</div>
</li>
</ul>
<p class="actions">
<input class="btn-primary" type="submit" value="<?php print t('Invite') ?>" name="submit">
</p>
<?php print render($form['form_build_id']) ?>
<?php print render($form['form_token']) ?>
<?php print render($form['form_id']) ?>