rhymix/modules/trackback/tpl/send_trackback_form.html
ChanMyeong 024a234f6a Admin HTML Markup Clean.
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9377 201d5d3c-b55e-5fd7-737f-ddc643e51545
2011-09-27 12:53:33 +00:00

38 lines
1.3 KiB
HTML

<h1 class="h1">{$lang->cmd_send_trackback}</h1>
<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 class="table">
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row"><label>{$lang->title}</label></th>
<td>{$oDocument->getTitleText()}</td>
</tr>
<tr>
<th scope="row"><label>{$lang->content}</label></th>
<td>{$oDocument->getSummary()}</td>
</tr>
<tr>
<th scope="row"><label for="textfield1">{$lang->send_trackback_url}</label></th>
<td>
<input type="text" id="textfield1" name="trackback_url" value="" />
<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 class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_send_trackback}" /></span>
</div>
</form>