mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10296 201d5d3c-b55e-5fd7-737f-ddc643e51545
25 lines
1.2 KiB
HTML
25 lines
1.2 KiB
HTML
<load target="js/page_admin.js" usecdn="true" />
|
|
<form action="./" method="post" onsubmit="return procFilter(this, insert_article)" id="fo_write">
|
|
<input type="hidden" name="mid" value="{$mid}" />
|
|
<input type="hidden" name="content" value="{$oDocument->getContentText()}" />
|
|
<input type="hidden" name="document_srl" value="{$document_srl}" />
|
|
<div class="form" style="margin-right:10px">
|
|
<input type="text" name="title" value="{htmlspecialchars($oDocument->getTitleText())}" title="{$lang->title}" style="width:100%" />
|
|
</div>
|
|
|
|
<div class="editor">{$oDocument->getEditor()}</div>
|
|
|
|
<div class="tag">
|
|
<input type="text" name="tags" value="{htmlspecialchars($oDocument->get('tags'))}" class="iText" title="Tag" />
|
|
<p>{$lang->about_tag}</p>
|
|
</div>
|
|
<div class="btnArea">
|
|
<!--@if($is_logged)-->
|
|
<!--@if(!$oDocument->isExists() || $oDocument->get('status') == 'TEMP')-->
|
|
<span class="btn"><button type="button" onclick="doDocumentSave(this);">{$lang->cmd_temp_save}</button></span>
|
|
<span class="btn"><button type="button" onclick="doDocumentLoad(this);">{$lang->cmd_load}</button></span>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
<span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span>
|
|
</div>
|
|
</form>
|