Hi,
Build link to registration.
The same of Joomla com_users
Build link to login.
The same of Joomla com_users
Get avatar file path.
require_once(JPATH_SITE.'/components/com_jsn/helpers/helper.php');
$user=new JsnUser(id_of_user);
// avatar
echo $user->getField('avatar');
// avatar thumbs
echo $user->getField('avatar_mini');
// avatar url
echo $user->getValue('avatar');
// avatar thumbs url
echo $user->getValue('avatar_mini');
read documentation at
http://www.easy-profile.com/docs/38-jsnuser-object.html