rhymix/modules/member/skins/cozy_simple/add_friend.html
zero 8326004cb2 삭제
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
2007-08-12 03:59:52 +00:00

49 lines
2.1 KiB
HTML

<!--#include("./common_header.html")-->
<!--%import("filter/add_friend.xml")-->
<div class="memberSmallBox w500pop">
<div class="header">
<h3>{$lang->cmd_add_friend}</h3>
</div>
<form action="./" method="get" onsubmit="return procFilter(this, add_friend)">
<input type="hidden" name="target_srl" value="{$target_info->member_srl}" />
<div class="complex">
<table cellspacing="0" class="friend">
<col width="110" />
<col />
<tr>
<th scope="row"><img src="./images/common/txt_id.gif" alt="{$lang->user_id}" /></th>
<td>{$target_info->user_id}</td>
</tr>
<tr>
<th scope="row"><img src="./images/common/txt_name.gif" alt="{$lang->user_name}"/></th>
<td>{$target_info->user_name}</td>
</tr>
<tr>
<th scope="row"><img src="./images/common/txt_nickname.gif" alt="{$lang->nick_name}"/></th>
<td><div class="member_{$target_info->member_srl}">{$target_info->nick_name}</div></td>
</tr>
</table>
<div class="group">
<select name="friend_group_srl" class="fl">
<option value="">{$lang->default_friend_group}</option>
<!--@foreach($friend_group_list as $key => $val)-->
<option value="{$val->friend_group_srl}">{$val->title}</option>
<!--@end-->
</select>
<span class="fr"><a href="{getUrl('act','dispMemberAddFriendGroup')}" onclick="popopen(this.href);return false;"><img src="./images/common/btn_add_group.gif" alt="{$lang->cmd_add_friend_group}" /></a></span>
</div>
</div>
<ul class="help">
<li class="first-child"><input type="image" src="./images/common/btn_ok.gif" title="{$lang->cmd_add_friend}" /></li>
<li><a href="#" onclick="window.close();return false;"><img src="./images/common/btn_cancel2.gif" alt="{$lang->cmd_close}" /></a></li>
</ul>
</form>
</div>
<!--#include("./common_footer.html")-->