rhymix/modules/communication/m.skins/rx_prn/add_friend.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

28 lines
No EOL
1.6 KiB
HTML

{@ $communication_popup = TRUE;}
<load target="filter/add_friend.xml" />
<include target="./common_header.html" />
<section class="prn-body">
<h1>{$lang->cmd_add_friend}</h1>
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/communication/skins/rx_prn/add_friend/1'" class="rx_prn-notice {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="addFriend" action="./" method="post">
<input type="hidden" name="module" value="communication" />
<input type="hidden" name="act" value="procCommunicationAddFriend" />
<input type="hidden" name="target_srl" value="{$target_info->member_srl}" />
<input type="hidden" name="xe_validator_id" value="modules/communication/skins/rx_prn/add_friend/1" />
<div class="control-group">
<label for="n_name">{$lang->nick_name}</label>
<input type="text" disabled="disabled" name="nick_name" id="n_name" value="{$target_info->nick_name}" title="{lang('common.user_id')}" />
<label for="friend_group_srl">{$lang->friend_group}<a class="pos-right" href="{getUrl('act','dispCommunicationAddFriendGroup')}" onclick="popopen(this.href);return false;">{$lang->cmd_add_friend_group}</a></label>
<select name="friend_group_srl" id="friend_group_srl">
<option value="">{$lang->default_friend_group}</option>
<option loop="$friend_group_list => $key,$val" value="{$val->friend_group_srl}">{$val->title}</option>
</select>
</div>
<div class="control-group">
<input type="submit" value="{lang('communication.cmd_add_friend')}" />
</div>
</form>
</section>
<include target="./common_footer.html" />