Your IP : 216.73.216.89


Current Path : /home/azimutno/azimutno/azimutno/azimutno/www/modules/mod_jf_login/tmpl/
Upload File :
Current File : /home/azimutno/azimutno/azimutno/azimutno/www/modules/mod_jf_login/tmpl/default.php

<?php
/**
 * @package 	JF Login
 * @author		JoomForest.com
 * @email		support@joomforest.com
 * @website		http://www.joomforest.com
 * @copyright	Copyright (C) 2011-2016 JoomForest.com, All rights reserved.
 * @license		http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
**/

// no direct access
defined('_JEXEC') or die('Restricted access');

JLoader::register('UsersHelperRoute', JPATH_SITE . '/components/com_users/helpers/route.php');

JHtml::_('behavior.keepalive');
?>
<div id="jf_login" class="<?php echo $moduleclass_sfx; ?>">
	<div class="jf_l_modal jf_l_modal_effect_1">
		<div class="jf_l_modal_content">
			<div class="jf_l_modal_title"><?php echo JText::_('MOD_JF_LOGIN_ACCOUNT'); ?></div>
			<div>
				<form action="<?php echo JRoute::_('index.php', true, $params->get('usesecure')); ?>" method="post" >
					<?php if ($params->get('pretext')): ?>
						<div class="pretext">
							<p><?php echo $params->get('pretext'); ?></p>
						</div>
					<?php endif; ?>
					
					<div class="jf_l_authorizing_wrap">
						<div class="jf_l_authorize">
							<div class="jf_l_inputwrapper">
								<a class="jf_l_forgot" tabindex="-1" href="<?php echo JRoute::_('index.php?option=com_users&view=remind&Itemid=' . UsersHelperRoute::getRemindRoute()); ?>" data-toggle="tooltip" data-placement="left" title="<?php echo JText::_('MOD_JF_LOGIN_FORGOT_YOUR_USERNAME'); ?>">
									<i class="fa fa-question"></i>
								</a>
								<input id="jf_l_input_username" type="text" name="username" class="" tabindex="0" size="18" placeholder="<?php echo JText::_('MOD_JF_LOGIN_USERNAME') ?>" />
								<label class="jf_l_input_icon" for="jf_l_input_username"><i class="fa fa-user"></i></label>
							</div>
							<div class="jf_l_inputwrapper">
								<input id="jf_l_input_passwd" type="password" name="password" class="" tabindex="0" size="18" placeholder="<?php echo JText::_('MOD_JF_LOGIN_PASSWORD') ?>" />
								<label class="jf_l_input_icon" for="jf_l_input_passwd"><i class="fa fa-key"></i></label>
								<a class="jf_l_forgot" tabindex="-1" href="<?php echo JRoute::_('index.php?option=com_users&view=reset&Itemid=' . UsersHelperRoute::getResetRoute()); ?>" data-toggle="tooltip" data-placement="left" title="<?php echo JText::_('MOD_JF_LOGIN_FORGOT_YOUR_PASSWORD'); ?>">
									<i class="fa fa-question"></i>
								</a>
							</div>
							<?php if (count($twofactormethods) > 1): ?>
							<div class="jf_l_inputwrapper">
								<input id="jf_l_secretkey" autocomplete="off" type="text" name="secretkey" class="jf_l_pro_input" tabindex="0" size="18" placeholder="<?php echo JText::_('JGLOBAL_SECRETKEY') ?>" />
								<label class="jf_l_input_icon" for="jf_l_secretkey"><i class="fa fa-anchor"></i></label>
							</div>
							<?php endif; ?>
							
							<?php if (JPluginHelper::isEnabled('system', 'remember')) : ?>
							<div class="jf_l_rememberwrap">
								<label for="jf_l_remember"><?php echo JText::_('MOD_JF_LOGIN_REMEMBER_ME') ?></label>
								<input id="jf_l_remember" type="checkbox" name="remember" class="" value="yes"/>
							</div>
							<?php endif; ?>
							
							<button type="submit" tabindex="0" name="Submit" class="jf_l_authoriz_btn"><?php echo JText::_('MOD_JF_LOGIN_SIGN_IN') ?></button>
							<input type="hidden" name="option" value="com_users" />
							<input type="hidden" name="task" value="user.login" />
							<input type="hidden" name="return" value="<?php echo $return; ?>" />
							<?php echo JHtml::_('form.token'); ?>
						</div>
						<span class="jf_l_authorizing_text"><?php echo JText::_('MOD_JF_LOGIN_AUTHORIZATING_TEXT'); ?></span>
					</div>
					
					<?php if ($jf_login_register) { ?>
						<?php 
							$usersConfig = JComponentHelper::getParams('com_users');
							if ($usersConfig->get('allowUserRegistration'))
						: ?>
							<div class="jf_l_register">
								<?php echo JText::_('MOD_JF_LOGIN_NOT_A_MEMBER'); ?>
								<?php if ($jf_login_register_link_url == '') { ?>
									<a class="jf_l_register_link" href="<?php echo JRoute::_('index.php?Itemid='.$jf_login_register_link_menu); ?>">
										<?php echo JText::_('MOD_JF_LOGIN_SIGN_UP_NOW'); ?>
									</a>
								<?php } else { ?>
									<a class="jf_l_register_link" href="<?php echo $jf_login_register_link_url; ?>">
										<?php echo JText::_('MOD_JF_LOGIN_SIGN_UP_NOW'); ?>
									</a>
								<?php } ?>
								<i class="fa fa-arrow-right"></i>
							</div>
						<?php endif; ?>
					<?php } ?>
					
					<div class="clear"></div>
					
					<?php if ($params->get('posttext')): ?>
						<div class="posttext">
						<p><?php echo $params->get('posttext'); ?></p>
						</div>
					<?php endif; ?>
				</form>
				<div class="jf_l_modal_close" data-toggle="tooltip" data-placement="left" title="<?php echo JText::_('MOD_JF_LOGIN_CLOSE'); ?>">×</div>
			</div>
		</div>
	</div>
	<div class="jf_l_modal_overlay"></div>
	<button class="jf_l_modal_trigger" data-toggle="tooltip" data-placement="bottom" title="<?php echo JText::_('MOD_JF_LOGIN_ACCOUNT'); ?>"><i class="fa fa-lock"></i></button>
</div>