Your IP : 216.73.216.240


Current Path : /home/s/u/n/sunflowe/www2/floridevilladereve/templates/saffron/html/mod_login/
Upload File :
Current File : /home/s/u/n/sunflowe/www2/floridevilladereve/templates/saffron/html/mod_login/default.php

<?php
/**
* @package   saffron
* @author    arrowthemes https://arrowthemes.com
* @copyright Copyright (C) arrowthemes
* @license   https://www.gnu.org/licenses/gpl.html GNU/GPL
*/

/**
* @package   Warp Theme Framework
* @author    YOOtheme http://www.yootheme.com
* @copyright Copyright (C) YOOtheme GmbH
* @license   http://www.gnu.org/licenses/gpl.html GNU/GPL
*/

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

JHtml::_('behavior.keepalive');

?>

<form class="uk-form uk-public-form" action="<?php echo JRoute::_('index.php', true, $params->get('usesecure')); ?>" method="post">

	<?php if ($params->get('pretext')) : ?>
	<div class="uk-form-row">
		<?php echo $params->get('pretext'); ?>
	</div>
	<?php endif; ?>

	<div class="uk-grid tm-login-grid" data-uk-grid-match >
		<div class="uk-width-2-5">
			<label class="tm-label-username"><?php echo JText::_('MOD_LOGIN_VALUE_USERNAME') ?></label>
			<input type="text" name="username" size="18" placeholder="">
		</div>

		<div class="uk-width-2-5">
			<label class="tm-label-password"><?php echo JText::_('JGLOBAL_PASSWORD') ?></label>
			<input type="password" name="password" size="18" placeholder="">
		</div>

		<div class="uk-width-1-5">
			<button class="tm-login-button uk-button uk-button-simple uk-float-right" value="<?php echo JText::_('JLOGIN') ?>" name="Submit" type="submit"><?php echo JText::_('JLOGIN') ?></button>
		</div>

	</div>

	<?php if (count($twofactormethods) > 1): ?>
	<div class="uk-form-row">
		<input class="uk-width-1-1" type="text" name="secretkey" tabindex="0" size="18" placeholder="<?php echo JText::_('JGLOBAL_SECRETKEY') ?>" />
	</div>
	<?php endif; ?>

	<?php if (JPluginHelper::isEnabled('system', 'remember')) : ?>
	<div class="uk-form-row uk-margin-small-top">
		<?php $number = rand(); ?>
		<label for="modlgn-remember-<?php echo $number; ?>"><?php echo JText::_('MOD_LOGIN_REMEMBER_ME') ?></label>
		<input id="modlgn-remember-<?php echo $number; ?>" type="checkbox" name="remember" value="yes" checked>
	</div>
	<?php endif; ?>

	<ul class="tm-login-links uk-hidden uk-list uk-margin-bottom-remove">
		<li class="tm-forgot-password"><a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>"><?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_PASSWORD'); ?></a></li>
		<li class="tm-forgot-username"><a href="<?php echo JRoute::_('index.php?option=com_users&view=remind'); ?>"><?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_USERNAME'); ?></a></li>
		<?php $usersConfig = JComponentHelper::getParams('com_users'); ?>
		<?php if ($usersConfig->get('allowUserRegistration')) : ?>
		<li class="tm-create-account"><a href="<?php echo JRoute::_('index.php?option=com_users&view=registration'); ?>"><?php echo JText::_('MOD_LOGIN_REGISTER'); ?></a></li>
		<?php endif; ?>
	</ul>
	
	<?php if($params->get('posttext')) : ?>
	<div class="uk-form-row">
		<?php echo $params->get('posttext'); ?>
	</div>
	<?php endif; ?>
	
	<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'); ?>
</form>