46 lines
1.6 KiB
Smarty
46 lines
1.6 KiB
Smarty
<form action="{$smarty.server.PHP_SELF}" method="POST">
|
|
<input type="hidden" name="page" value="{$smarty.request.page}">
|
|
<input type="hidden" name="action" value="{$smarty.request.action}">
|
|
<input type="hidden" name="do" value="sendInvitation">
|
|
<article class="module width_quarter">
|
|
<header><h3>Invitation</h3></header>
|
|
<div class="module_content">
|
|
<fieldset>
|
|
<label>E-Mail</label>
|
|
<input type="text" name="data[email]" value="{$smarty.request.data.email|escape|default:""}" size="30" />
|
|
</fieldset>
|
|
<fieldset>
|
|
<label>Message</label>
|
|
<textarea name="data[message]" rows="5">{$smarty.request.data.message|escape|default:"Please accept my invitation to this awesome pool."}</textarea>
|
|
</fieldset>
|
|
</div>
|
|
<footer>
|
|
<div class="submit_link">
|
|
<input type="submit" value="Invite" class="alt_btn">
|
|
</div>
|
|
</footer>
|
|
</article>
|
|
</form>
|
|
|
|
<article class="module width_3_quarter">
|
|
<header><h3>Past Invitations</h3></header>
|
|
<table class="tablesorter" cellspacing="0">
|
|
<thead style="font-size:13px;">
|
|
<tr>
|
|
<th>E-Mail</th>
|
|
<th class="center">Sent</th>
|
|
<th class="center">Activated</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{section name=invite loop=$INVITATIONS}
|
|
<tr>
|
|
<td>{$INVITATIONS[invite].email}</td>
|
|
<td class="center">{$INVITATIONS[invite].time|date_format:"%d/%m/%Y %H:%M:%S"}</td>
|
|
<td class="center"><img src="{$PATH}/images/{if $INVITATIONS[invite].is_activated}success{else}error{/if}.gif" /></td>
|
|
</tr>
|
|
{/section}
|
|
<tbody>
|
|
</table>
|
|
</article>
|