mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9723 201d5d3c-b55e-5fd7-737f-ddc643e51545
31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
<load target="js/communication.js" />
|
|
<h1 class="h1">{$lang->cmd_send_message}</h1>
|
|
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form ruleset="sendMessage" action="./" method="get">
|
|
<input type="hidden" name="module" value="communication" />
|
|
<input type="hidden" name="act" value="procCommunicationSendMessage" />
|
|
<input type="hidden" name="content" value="{htmlspecialchars($source_message->content)}" />
|
|
<input type="hidden" name="receiver_srl" value="{$receiver_info->member_srl}" />
|
|
<div class="table">
|
|
<table width="100%" border="1" cellspacing="0" class="form">
|
|
<tr>
|
|
<th scope="row"><label for="textfield1">{$lang->receiver}</label></th>
|
|
<td>{$receiver_info->nick_name}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->title}</th>
|
|
<td><input type="text" name="title" id="message_title" value="{$source_message->title}"/></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->cmd_option}</th>
|
|
<td><input type="checkbox" value="Y" name="send_mail" /> {$lang->cmd_send_mail}</td>
|
|
</tr>
|
|
</table>
|
|
{$editor}
|
|
</div>
|
|
<div class="btnArea">
|
|
<span class="btn"><input type="submit" value="{$lang->cmd_send_message}" /></span>
|
|
</div>
|
|
</form>
|