* Шаблонный тег <insert name="show_login" module="registration" [template="шаблон"]>:
* @license
http://www.diafan.ru/license.html
* @copyright Copyright (c) 2003-2015 OOO «Диафан» (http://www.diafan.ru/)
*/
if (!defined('DIAFAN'))
{
include dirname(dirname(dirname(__FILE__))).'/includes/404.php';
}
if (!$result["user"])
{
echo '<div class="error-auth">';
echo $result["error"];
echo '</div>';
echo '<div class="spoiler-auth-head">'.$this->diafan->_('Войдите на сайт').'</div>';
echo '<div class="spoiler-auth-body">';
echo '<div class="block">';
echo '<form method="post" action="'.$result["action"].'" class="login">
<input type="hidden" name="action" value="auth">
<input type="text" name="name" placeholder="'.$this->diafan->_('Ваш E-mail').'" autocomplete="off">
<input type="password" name="pass" placeholder="'.$this->diafan->_('Пароль').'" autocomplete="off">
<input type="checkbox" id="not_my_computer" name="not_my_computer" value="1">
<label for="not_my_computer">'.$this->diafan->_('Чужой компьютер').'</label>
<input type="submit" value="Войти"><br>';
if (! empty($result["reminding"]))
{
echo '<a href="'.$result["reminding"].'" class="arrow-link black">'.$this->diafan->_('Забыли пароль?').'</a> ';
}
if(! empty($result["registration"]))
{
echo '<a href="'.$result["registration"].'" class="arrow-link black">'.$this->diafan->_('Регистрация').'</a>';
}
echo '</form>';
if(! empty($result["use_loginza"]))
{
$this->diafan->_site->js_view[] = 'http://loginza.ru/js/widget.js';
echo '<br><a href="https://loginza.ru/api/widget?token_url='.urlencode('http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']).'" class="loginza">
<img src="http://loginza.ru/img/providers/yandex.png" alt="Yandex" title="Yandex">
<img src="http://loginza.ru/img/providers/google.png" alt="Google" title="Google Accounts">
<img src="http://loginza.ru/img/providers/vkontakte.png" alt="Вконтакте" title="Вконтакте">
<img src="http://loginza.ru/img/providers/mailru.png" alt="Mail.ru" title="Mail.ru">
<img src="http://loginza.ru/img/providers/twitter.png" alt="Twitter" title="Twitter">
<img src="http://loginza.ru/img/providers/loginza.png" alt="Loginza" title="Loginza">
<img src="http://loginza.ru/img/providers/myopenid.png" alt="MyOpenID" title="MyOpenID">
<img src="http://loginza.ru/img/providers/openid.png" alt="OpenID" title="OpenID">
<img src="http://loginza.ru/img/providers/webmoney.png" alt="WebMoney" title="WebMoney">
</a><br><br>';
}
echo '</div>';
echo '</div>';
}
else
{
echo '<div class="spoiler-auth-head">'.$this->diafan->_('Личный кабинет').'</div>';
echo '<div class="spoiler-auth-body">';
echo '<div class="block profile-block">';
echo '<div class="profile-hello-text">
'.$this->diafan->_('Приветствуем Вас').', ';
echo '<strong>' .$result["fio"]. '</strong>';
echo '!
</div>';
if (!empty($result["avatar"]))
{
echo '<div class="avatar-user">';
echo '<img src="'.BASE_PATH.USERFILES.'/avatar/'.$result["name"].'.png" width="'.$result["avatar_width"].'" height="'.$result["avatar_height"].'" alt="'.$result["fio"].' ('.$result["name"].')" class="avatar profile-hello-avatar">';
echo '</div>';
}
echo '<ul class="menu-user">';
if($result['userpage'])
{
echo '<li><a href="'.$result['userpage'].'">'.$this->diafan->_('Профиль').'</a></li>';
}
if(! empty($result["usersettings"]))
{
echo '<li><a href="'.$result["usersettings"].'">'.$this->diafan->_('Настройки').'</a></li>';
}
if (!empty($result['messages']))
{
echo '<li><a href="'.$result['messages'].'">'.$result['messages_name'];
if($result['messages_unread'])
{
echo ' (<b>'.$result['messages_unread'].'</b>)';
}
echo '</a></li>';
}
echo '<li><a href="'.BASE_PATH_HREF.'logout/?'.rand(0, 99999).'">'.$this->diafan->_('Выйти').'</a></li>';
echo '</ul>';
echo '</div>';
echo '</div>';
}