| Current Path : /home/antonen/keliauk-uk.lt/components/com_rsfirewall/views/login/tmpl/ |
| Current File : /home/antonen/keliauk-uk.lt/components/com_rsfirewall/views/login/tmpl/default.php |
<?php
/**
* @package RSFirewall!
* @copyright (c) 2009 - 2017 RSJoomla!
* @link https://www.rsjoomla.com
* @license GNU General Public License http://www.gnu.org/licenses/gpl-3.0.en.html
*/
defined('_JEXEC') or die('Restricted access');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<?php if ($this->jversion->isCompatible('3.0')) { ?>
<link rel="stylesheet" href="<?php echo JHtml::_('stylesheet', 'jui/bootstrap.min.css', array(), true, true); ?>" type="text/css" />
<link rel="stylesheet" href="<?php echo JHtml::_('stylesheet', 'jui/bootstrap-responsive.min.css', array(), true, true); ?>" type="text/css" />
<link rel="stylesheet" href="<?php echo JHtml::_('stylesheet', 'jui/bootstrap-extended.css', array(), true, true); ?>" type="text/css" />
<?php } else { ?>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/css/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/css/bootstrap-responsive.min.css" type="text/css" />
<?php } ?>
<title><?php echo JText::_('COM_RSFIREWALL_PROTECTED_AREA'); ?></title>
<style type="text/css">
body {
padding-top: 40px;
padding-bottom: 40px;
background-color: #224c8f;
}
.form-signin {
max-width: 300px;
padding: 19px 29px 29px;
margin: 0 auto 20px;
background-color: #fff;
border: 1px solid #e5e5e5;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.form-signin input[type="password"] {
font-size: 16px;
height: auto;
margin-bottom: 15px;
padding: 7px 9px;
}
</style>
<script type="text/javascript">
function addEvent(obj, evType, fn) {
if (obj.addEventListener) {
obj.addEventListener(evType, fn, false);
return true;
} else if (obj.attachEvent) {
var r = obj.attachEvent("on"+evType, fn);
return r;
} else {
return false;
}
}
addEvent(window, 'load', function() {
var element = document.getElementsByName('rsf_backend_password')[0];
addEvent(element, 'focus', function() { this.className = 'focus'; });
addEvent(element, 'blur', function() { this.className = ''; });
element.focus();
});
</script>
</head>
<body>
<div class="container">
<?php if ($this->password_sent) { ?>
<div class="alert alert-error">
<h4><?php echo JText::_('COM_RSFIREWALL_ERROR'); ?></h4>
<?php echo JText::_('COM_RSFIREWALL_PASSWORD_INCORRECT'); ?>
</div>
<?php } ?>
<form method="post" action="index.php" class="form-signin text-center">
<p><img src="components/com_rsfirewall/assets/images/icon-48-rsfirewall.png" /></p>
<h3><?php echo JText::_('COM_RSFIREWALL_PLEASE_LOGIN_TO_CONTINUE'); ?></h3>
<input type="password" class="input-block-level" name="rsf_backend_password" placeholder="<?php echo $this->escape(JText::_('COM_RSFIREWALL_PASSWORD')); ?>" />
<button class="btn btn-large btn-primary" type="submit"><?php echo JText::_('COM_RSFIREWALL_LOGIN'); ?></button>
</form>
</div>
</body>
</html>