mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 18:51:41 +09:00
standalone method apply validator. Auto Form generation error in Template engine is fixed git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8482 201d5d3c-b55e-5fd7-737f-ddc643e51545
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!--%import("js/communication.js")-->
|
|
|
|
<div id="popHeader">
|
|
<h3 class="xeAdmin">
|
|
<!--@if($friend_group->friend_group_srl)-->
|
|
{$lang->cmd_rename_friend_group}
|
|
<!--@else-->
|
|
{$lang->cmd_add_friend_group}
|
|
<!--@end-->
|
|
</h3>
|
|
</div>
|
|
<p class="xe_validator_error">{$XE_VALIDATOR_ERROR}</p>
|
|
<form ruleset="addFriendGroup" action="./" method="post">
|
|
<input type="hidden" name="act" value="procCommunicationAddFriendGroup" />
|
|
<input type="hidden" name="friend_group_srl" value="{$friend_group->friend_group_srl}" />
|
|
|
|
<div id="popBody">
|
|
|
|
<div class="text">
|
|
<p>{$lang->msg_insert_group_name}</p>
|
|
<input name="title" type="text" class="inputTypeText" value="{htmlspecialchars($friend_group->title)}"/>
|
|
</div>
|
|
</div>
|
|
<div id="popFooter">
|
|
<!--@if($friend_group->friend_group_srl)-->
|
|
<span class="button black strong"><input type="submit" value="{$lang->cmd_modify}" /></span>
|
|
<!--@else-->
|
|
<span class="button black strong"><input type="submit" value="{$lang->cmd_insert}" /></span>
|
|
<!--@end-->
|
|
</div>
|
|
</form>
|