1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 09:24:25 +03:00
ifhub.club/templates/skin/synio/modals/modal.add_friend.tpl
2013-04-07 02:06:48 +07:00

16 lines
658 B
Smarty

{extends file='modals/modal_base.tpl'}
{block name='id'}add_friend_form{/block}
{block name='class'}add_friend_form js-modal-default{/block}
{block name='title'}{$aLang.profile_add_friend}{/block}
{block name='content'}
<form onsubmit="return ls.user.addFriend(this,{$oUserProfile->getId()},'add');">
<label for="add_friend_text">{$aLang.user_friend_add_text_label}</label>
<textarea id="add_friend_text" rows="3" class="input-text input-width-full"></textarea>
</form>
{/block}
{block name='footer'}
<button type="submit" class="button button-primary" onclick="jQuery('#add_friend_form').submit()">{$aLang.user_friend_add_submit}</button>
{/block}