Файл: oc-admin/gui/login.php
Строк: 170
<?php
/*
* Copyright 2014 Osclass
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
?>
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="robots" content="noindex, nofollow, noarchive" />
<meta name="googlebot" content="noindex, nofollow, noarchive" />
<title><?php echo osc_page_title(); ?> » <?php _e('Log in'); ?></title>
<script type="text/javascript" src="<?php echo osc_assets_url('js/jquery.min.js'); ?>"></script>
<link type="text/css" href="style/backoffice_login.css" media="screen" rel="stylesheet" />
<?php osc_run_hook('admin_login_header'); ?>
</head>
<body class="login">
<div id="login">
<h1>
<a href="<?php echo View::newInstance()->_get('login_admin_url'); ?>" title="<?php echo View::newInstance()->_get('login_admin_title'); ?>">
<img src="<?php echo View::newInstance()->_get('login_admin_image'); ?>" border="0" title="<?php echo View::newInstance()->_get('login_admin_title'); ?>" alt="<?php echo View::newInstance()->_get('login_admin_title'); ?>" />
</a>
</h1>
<?php osc_show_flash_message('admin'); ?>
<form name="loginform" id="loginform" action="<?php echo osc_admin_base_url(true); ?>" method="post">
<input type="hidden" name="page" value="login" />
<input type="hidden" name="action" value="login_post" />
<p>
<label for="user_login">
<span><?php _e('Username'); ?></span>
<input type="text" name="user" id="user_login" class="input" value="<?php if( defined('DEMO') ){ echo 'admin'; } ?>" size="20" tabindex="10" />
</label>
</p>
<p>
<label for="user_pass">
<span><?php _e('Password'); ?></span>
<input type="password" name="password" id="user_pass" class="input" value="<?php if( defined('DEMO') ) { echo 'admin'; }?>" size="20" tabindex="20" autocomplete="off" />
</label>
</p>
<?php osc_run_hook('login_admin_form'); ?>
<?php $locales = osc_all_enabled_locales_for_admin(); ?>
<?php if(count($locales) > 1) { ?>
<p>
<select name="locale" id="user_language">
<?php foreach($locales as $locale) { ?>
<option value="<?php echo $locale ['pk_c_code']; ?>" <?php if(osc_admin_language() == $locale['pk_c_code']) echo 'selected="selected"'; ?>><?php echo $locale['s_short_name']; ?></option>
<?php } ?>
</select>
</p>
<?php } else {?>
<input type="hidden" name="locale" value="<?php echo $locales[0]["pk_c_code"]; ?>" />
<?php } ?>
<p class="forgetmenot">
<label>
<input name="remember" type="checkbox" id="remember" value="1" tabindex="90" /> <?php _e('Remember me'); ?>
</label>
<a href="<?php echo osc_admin_base_url(true); ?>?page=login&action=recover" title="<?php echo osc_esc_html( __('Forgot your password?')); ?>" class="forgot"><?php _e('Forgot your password?'); ?></a>
</p>
<p class="submit">
<input type="submit" name="submit" id="submit" value="<?php echo osc_esc_html( __('Log in')); ?>" tabindex="100" />
</p>
</form>
</div>
<p id="backtoblog"><a href="<?php echo osc_base_url(); ?>" title="<?php echo osc_esc_html( sprintf( __('Back to %s'), osc_page_title() )); ?>">← <?php printf( __('Back to %s'), osc_page_title() ); ?></a></p>
<script type="text/javascript">
$(function(){
function placeholder(input_form) {
input_form.each(function(){
$(this).focus(function(){
$(this).prev().hide();
}).blur(function(){
if($(this).val() == '') {
$(this).prev().show();
}
}).prev().click(function(){
$(this).hide().next().focus();
});
if($(this).val() != ''){
$(this).prev().hide();
}
});
}
placeholder($('#user_login, #user_pass'));
setTimeout(function() {
placeholder($('#user_login, #user_pass'));
}, '500');
$(".ico-close").click(function(){
$(this).parent().hide();
});
});
</script>
</body>
</html>