mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
* Communication 모듈 네모의 꿈 스킨 작업을 시작합니다. * default skin 코드를 기반으로 했습니다. * 추후 javascript 에 과도하게 의존하는 액션을 수정할 예정입니다. * 중간 완성본입니다.
29 lines
1.4 KiB
HTML
29 lines
1.4 KiB
HTML
{@ $communication_popup = TRUE;}
|
|
<include target="./common_header.html" />
|
|
<load target="js/communication.js" />
|
|
<section class="sw-body">
|
|
<h1>
|
|
<!--@if($friend_group->friend_group_srl)-->
|
|
{$lang->cmd_rename_friend_group}
|
|
<!--@else-->
|
|
{$lang->cmd_add_friend_group}
|
|
<!--@end-->
|
|
</h1>
|
|
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/communication/skins/simple_world/add_friend_group/1'" class="rx_member-notice {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form ruleset="addFriendGroup" action="./" method="post" class="form-horizontal">
|
|
<input type="hidden" name="module" value="communication" />
|
|
<input type="hidden" name="act" value="procCommunicationAddFriendGroup" />
|
|
<input type="hidden" name="friend_group_srl" value="{$friend_group->friend_group_srl}" />
|
|
<input type="hidden" name="xe_validator_id" value="modules/communication/skins/simple_world/add_friend_group/1" />
|
|
<div class="control-group">
|
|
<label for="title">{$lang->msg_insert_group_name}</label>
|
|
<input name="title" id="title" type="text" value="{htmlspecialchars($friend_group->title, ENT_COMPAT | ENT_HTML401, 'UTF-8', false)}"/>
|
|
</div>
|
|
<div class="control-group">
|
|
<input cond="$friend_group->friend_group_srl" type="submit" value="{$lang->cmd_modify}" />
|
|
<input cond="!$friend_group->friend_group_srl" type="submit" value="{$lang->cmd_insert}" />
|
|
</div>
|
|
</form>
|
|
</section>
|