rhymix/modules/communication/m.skins/rx_prn/add_friend_group.html
Min-Soo Kim 09e60ee3eb 필요할 때 라이믹스 (Rhymix PRN) - 멤버 모바일 스킨 (#885)
* 필요할 때 라이믹스 (Rhymix PRN)

# 필요할 때 라이믹스 (Rhymix PRN)

마더캣님과 작업하는 정식 라이믹스 회원 모듈 모바일 스킨
디자인: 마더캣
구현: 미솔

참고: 미솔의 개인적인 스케줄이 바빠서 오래 걸릴 예정. rhymix-designs 에서 작업하고 사용할만하게 되면 옮겨오는
식으로 작업중...

* Simple world 스킨 흔적 지우기.

* 프로필 이미지 등록, 삭제 UI

* 탈퇴 페이지에서 필수가 아닌 변수 삭제

https://github.com/rhymix/rhymix/pull/885 @bjrambo 님 의견 반영

* 회원 모듈 스킨, 커뮤니케이션 모듈 스킨

* 잘못 들어간 파일삭제

* 잘못 들어간 파일 삭제

* 깨진 이미지 복구

* 스킨 다듬기
2017-09-20 09:21:51 +09:00

29 lines
No EOL
1.4 KiB
HTML

{@ $communication_popup = TRUE;}
<include target="./common_header.html" />
<load target="js/communication.js" />
<section class="prn-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/rx_prn/add_friend_group/1'" class="rx_prn-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/rx_prn/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>