You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.0 KiB
Smarty
32 lines
1.0 KiB
Smarty
17 years ago
|
<div id="edit_form">
|
||
|
<form name="broadcast-message" method="post">
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td colspan="3"><h3><?php print $PALANG['pBroadcast_title']; ?></h3></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td><?php print $PALANG['pBroadcast_from'] . ":"; ?></td>
|
||
|
<td><input class="flat" size="43" type="text" name="from"/></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td><?php print $PALANG['pBroadcast_subject'] . ":"; ?></td>
|
||
|
<td><input class="flat" size="43" type="text" name="subject"/></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td><?php print $PALANG['pBroadcast_message'] . ":"; ?></td>
|
||
|
<td><textarea class="flat" cols="40" rows="6" name="message"></textarea></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="3" class="hlp_center">
|
||
|
<?php
|
||
|
if($error == 1){
|
||
|
echo '<br/><span class="error_msg">'.$PALANG['pBroadcast_error_empty'].'</span><br/><br/>' ;
|
||
|
}
|
||
|
?>
|
||
|
<input class="button" type="submit" name="submit" value="<?php print $PALANG['pBroadcast_send']; ?>" /></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|
||
|
</div>
|
||
|
<p><?php print $PALANG['pBroadcast_from_help']; ?></p>
|