mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
106 lines
5.3 KiB
HTML
106 lines
5.3 KiB
HTML
<!--@if($act=="dispBoardWrite")-->
|
|
<!--#include("header.html")-->
|
|
<!--@end-->
|
|
|
|
<!--%import("filter/insert.xml")-->
|
|
<form action="./" method="post" onsubmit="return procFilter(this, window.insert)" 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="boardWrite">
|
|
<!--@if(!$is_logged)-->
|
|
<div>
|
|
<div class="inputItem">
|
|
<label for="userName">{$lang->writer}</label>
|
|
<input type="text" name="nick_name" value="{$oDocument->getNickName()}" class="userName inputTypeText" id="userName"/>
|
|
</div>
|
|
<div class="inputItem">
|
|
<label for="userPw">{$lang->password}</label>
|
|
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
|
|
</div>
|
|
<div class="inputItem">
|
|
<label for="emailAddress">{$lang->email_address}</label>
|
|
<input type="text" name="email_address" value="{htmlspecialchars($oDocument->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>
|
|
</div>
|
|
<div class="inputItem">
|
|
<label for="homePage">{$lang->homepage}</label>
|
|
<input type="text" name="homepage" value="{htmlspecialchars($oDocument->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div>
|
|
<!--@end-->
|
|
|
|
<dl class="option">
|
|
<!--@if($grant->manager)-->
|
|
{@ $_color = array('555555','222288','226622','2266EE','8866CC','88AA66','EE2222','EE6622','EEAA22','EEEE22') }
|
|
<dd><select name="title_color" id="title_color" <!--@if($oDocument->get('title_color'))-->style="background-color:#{$oDocument->get('title_color')};"<!--@end--> onchange="this.style.backgroundColor=this.options[this.selectedIndex].style.backgroundColor;">
|
|
<option value="" style="background-color:#FFFFFF;">{$lang->title_color}</option>
|
|
<!--@foreach($_color as $_col)-->
|
|
<option value="{$_col}" style="background-color:#{$_col}" <!--@if($oDocument->get('title_color')==$_col)-->selected="selected"<!--@end-->>{$lang->title_color}</option>
|
|
<!--@end-->
|
|
</select></dd>
|
|
<dd>
|
|
<input type="checkbox" name="title_bold" id="title_bold" value="Y" <!--@if($oDocument->get('title_bold')=='Y')-->checked="checked"<!--@end--> />
|
|
<label for="title_bold">{$lang->title_bold}</label>
|
|
</dd>
|
|
<dd>
|
|
<input type="checkbox" name="is_notice" value="Y" <!--@if($oDocument->isNotice())-->checked="checked"<!--@end--> id="is_notice" />
|
|
<label for="is_notice">{$lang->notice}</label>
|
|
</dd>
|
|
<dd>
|
|
<input type="checkbox" name="lock_comment" value="Y" <!--@if($oDocument->isLocked())-->checked="checked"<!--@end--> id="lock_comment" />
|
|
<label for="lock_comment">{$lang->lock_comment}</label>
|
|
</dd>
|
|
<!--@end-->
|
|
<dd>
|
|
<input type="checkbox" name="is_secret" value="Y" <!--@if($oDocument->isSecret())-->checked="checked"<!--@end--> id="is_secret" />
|
|
<label for="is_secret">{$lang->secret}</label>
|
|
</dd>
|
|
<dd>
|
|
<input type="checkbox" name="allow_comment" value="Y" <!--@if($oDocument->allowComment())-->checked="checked"<!--@end--> id="allow_comment" />
|
|
<label for="allow_comment">{$lang->allow_comment}</label>
|
|
</dd>
|
|
<!--@if($is_logged)-->
|
|
<dd>
|
|
<input type="checkbox" name="notify_message" value="Y" <!--@if($oDocument->useNotify())-->checked="checked"<!--@end--> id="notify_message" />
|
|
<label for="notify_message">{$lang->notify}</label>
|
|
</dd>
|
|
<!--@end-->
|
|
</dl>
|
|
|
|
<!--@if($module_info->extra_vars)-->
|
|
<table cellspacing="0" summary="" class="extraVarsList">
|
|
<col width="150" />
|
|
<col />
|
|
<!--@foreach($module_info->extra_vars as $key => $val)-->
|
|
<!--@if($val->name)-->
|
|
<tr>
|
|
<th scope="row">{$val->name} <!--@if($val->is_required=='Y')-->*<!--@end--></th>
|
|
<td><!--#include("./extra_var_form.html")--></td>
|
|
</tr>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
</table>
|
|
<!--@end-->
|
|
|
|
<div class="editor">{$oDocument->getEditor()}</div>
|
|
|
|
<div class="fl gap1">
|
|
|
|
<!--@if($is_logged)-->
|
|
<span class="button"><input type="button" value="{$lang->cmd_temp_save}" onclick="doDocumentSave(this); return false;" /></span>
|
|
<span class="button"><input type="button" value="{$lang->cmd_load}" onclick="doDocumentLoad(this); return false;" /></span>
|
|
<!--@end-->
|
|
<span class="button"><input type="button" value="{$lang->cmd_preview}" onclick="doDocumentPreview(this); return false;" /></span>
|
|
<span class="button"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
</div>
|
|
</form>
|
|
|
|
<!--@if($act=="dispBoardWrite")-->
|
|
<!--#include("footer.html")-->
|
|
<!--@end-->
|