rhymix/modules/member/tpl/member_config.html

87 lines
3.8 KiB
HTML

<!--%import("filter/insert_config.xml")-->
<!--#include("header.html")-->
<form action="./" method="get" onsubmit="return procFilter(this, insert_config)">
<input type="hidden" name="content" value="{htmlspecialchars($config->agreement)}" />
<table cellspacing="0" class="tableType2 gap1">
<col width="150" />
<col />
<tr>
<th scope="row">{$lang->skin}</th>
<td>
<select name="skin">
<!--@foreach($skin_list as $key => $val)-->
<option value="{$key}">{$val->title} ({$key})</option>
<!--@end-->
</select>
</td>
</tr>
<tr>
<th scope="row">{$lang->enable_openid}</th>
<td>
<input type="checkbox" name="enable_openid" value="Y" <!--@if($config->enable_openid=='Y')-->checked="true"<!--@end--> class="checkbox" />
{$lang->about_enable_openid}
</td>
</tr>
<tr>
<th scope="row">{$lang->enable_join}</th>
<td>
<input type="checkbox" name="enable_join" value="Y" <!--@if($config->enable_join=='Y')-->checked="true"<!--@end--> class="checkbox" />
{$lang->about_enable_join}
</td>
</tr>
<tr>
<th scope="row">{$lang->limit_day}</th>
<td>
<input type="text" name="limit_day" value="{$config->limit_day}" class="inputTypeText" />{$lang->unit_day}
<p>{$lang->about_limit_day}</p>
</td>
</tr>
<tr>
<th scope="row">{$lang->image_name}</th>
<td>
<p>
<input type="checkbox" name="image_name" value="Y" <!--@if($config->image_name=='Y')-->checked="true"<!--@end--> class="checkbox" />
{$lang->about_image_name}
</p>
{$lang->image_name_max_width} : <input type="text" name="image_name_max_width" value="{$config->image_name_max_width}" class="inputTypeText" />px<br />
{$lang->image_name_max_height} : <input type="text" name="image_name_max_height" value="{$config->image_name_max_height}" class="inputTypeText" />px<br />
</td>
</tr>
<tr>
<th scope="row">{$lang->image_mark}</th>
<td>
<p>
<input type="checkbox" name="image_mark" value="Y" <!--@if($config->image_mark=='Y')-->checked="true"<!--@end--> class="checkbox"/>
{$lang->about_image_mark}
</p>
{$lang->image_mark_max_width} : <input type="text" name="image_mark_max_width" value="{$config->image_mark_max_width}" class="inputTypeText"/>px<br />
{$lang->image_mark_max_height} : <input type="text" name="image_mark_max_height" value="{$config->image_mark_max_height}" class="inputTypeText"/>px<br />
</td>
</tr>
<tr>
<th scope="row">{$lang->redirect_url}</th>
<td>
<input type="text" name="redirect_url" value="{$config->redirect_url}" class="inputTypeText" />
<p>{$lang->about_redirect_url}</p>
</td>
</tr>
<tr>
<th scope="row">{$lang->agreement}</th>
<td>
{$editor}
<p>{$lang->about_agreement}</p>
</td>
</tr>
</table>
<ul class="buttonRight">
<li><span class="buttonTypeA"><img src="../../admin/tpl/images/blank.gif" alt="" class="leftCap" /><img src="../../admin/tpl/images/iconCreate.gif" width="8" height="4" alt="" class="icon" /><input type="submit" value="{$lang->cmd_registration}" /><img src="../../admin/tpl/images/blank.gif" alt="" class="rightCap" /></a></li>
<!--@if($module=="admin")-->
<li><a href="{getUrl('act','dispMemberAdminList')}" class="buttonTypeA"><img src="../../admin/tpl/images/blank.gif" alt="" class="leftCap" />{$lang->cmd_back}<img src="../../admin/tpl/images/blank.gif" alt="" class="rightCap" /></a></li>
<!--@end-->
</ul>
</form>