rhymix/modules/trackback/tpl/send_trackback_form.html
flyskyko 579ac47d85 change validator message markup
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8619 201d5d3c-b55e-5fd7-737f-ddc643e51545
2011-07-22 05:47:52 +00:00

44 lines
1.6 KiB
HTML

<div id="popHeader" class="wide">
<h3 class="xeAdmin">{$lang->cmd_send_trackback}</h3>
</div>
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="sendTrackback" action="./" method="post">
<input type="hidden" name="act" value="procTrackbackSend" />
<input type="hidden" name="target_srl" value="{$oDocument->document_srl}" />
<div id="popBody">
<table cellspacing="0" class="rowTable">
<tr>
<th scope="row"><div><label>{$lang->title}</label></div></th>
<td>{$oDocument->getTitleText()}</td>
</tr>
<tr>
<th scope="row"><div><label>{$lang->content}</label></div></th>
<td>{$oDocument->getSummary()}</td>
</tr>
<tr>
<th scope="row"><div><label for="textfield1">{$lang->send_trackback_url}</label></div></th>
<td>
<input type="text" id="textfield1" name="trackback_url" value="" class="inputTypeText w300" />
<select name="charset">
<option value='UTF-8'>UTF-8</option>
<option value='EUC-KR'>EUC-KR</option>
<option value='EUC-JP'>EUC-JP</option>
<option value='SHIFT_JIS'>SHIFT_JIS</option>
<option value='EUC-CN'>EUC-CN</option>
<option value='HZ'>HZ</option>
<option value='BIG5'>BIG5</option>
</select>
</td>
</tr>
</table>
</div>
<div id="popFooter">
<span class="button black strong"><input type="submit" value="{$lang->cmd_send_trackback}" /></span>
</div>
</form>