105 lines
3.6 KiB
PHP
105 lines
3.6 KiB
PHP
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
/**
|
|
* Local login form.
|
|
*/
|
|
require_once '../../../main/inc/global.inc.php';
|
|
|
|
/**
|
|
* Homemade micro-controller.
|
|
*/
|
|
if (isset($_GET['loginFailed'])) {
|
|
if (isset($_GET['error'])) {
|
|
switch ($_GET['error']) {
|
|
case 'account_expired':
|
|
$error_message = get_lang('AccountExpired');
|
|
break;
|
|
case 'account_inactive':
|
|
$error_message = get_lang('AccountInactive');
|
|
break;
|
|
case 'user_password_incorrect':
|
|
$error_message = get_lang('InvalidId');
|
|
break;
|
|
case 'access_url_inactive':
|
|
$error_message = get_lang('AccountURLInactive');
|
|
break;
|
|
default:
|
|
$error_message = get_lang('InvalidId');
|
|
}
|
|
} else {
|
|
$error_message = get_lang('InvalidId');
|
|
}
|
|
}
|
|
|
|
$rootWeb = api_get_path('WEB_PATH');
|
|
|
|
/**
|
|
* HTML output.
|
|
*/
|
|
?>
|
|
<html>
|
|
<head>
|
|
<title>Local login</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?php echo $rootWeb; ?>web/assets/bootstrap/dist/css/bootstrap.min.css" />
|
|
<link rel="stylesheet" type="text/css" href="<?php echo $rootWeb; ?>web/assets/flag-icon-css/css/flag-icon.min.css" />
|
|
|
|
<script type="text/javascript" src="<?php echo $rootWeb; ?>web/assets/jquery/dist/jquery.min.js"></script>
|
|
<script type="text/javascript" src="<?php echo $rootWeb; ?>web/assets/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
if (top.location != location) {
|
|
top.location.href = document.location.href;
|
|
}
|
|
|
|
// Handler pour la touche retour
|
|
$('input').keyup(function(e) {
|
|
if (e.keyCode == 13) {
|
|
$('#login-form').submit();
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<!-- <div id="backgroundimage">
|
|
<img src="<?php echo api_get_path(WEB_PATH); ?>/plugin/oauth2/localLogin/images/page-background.png" class="backgroundimage" />
|
|
</div>-->
|
|
<div id="wrapper">
|
|
<div id="header">
|
|
<img src="<?php echo api_get_path(WEB_PATH); ?>/plugin/oauth2/localLogin/images/header.png" alt="Logo" />
|
|
</div> <!-- #header -->
|
|
<div id="login-form-box" class="form-box">
|
|
<div id="login-form-info" class="form-info">
|
|
<?php
|
|
echo Display::getFlashToString();
|
|
Display::cleanFlashMessages();
|
|
if (isset($content['info']) && !empty($content['info'])) {
|
|
echo $content['info'];
|
|
}
|
|
?>
|
|
</div>
|
|
<?php if (isset($error_message)) {
|
|
echo '<div id="login-form-info" class="form-error">'.$error_message.'</div>';
|
|
}
|
|
?>
|
|
<form id="login-form" class="form" action="<?php echo api_get_path(WEB_PATH); ?>index.php" method="post">
|
|
<div>
|
|
<label for="login">*<?php echo get_lang('User'); ?></label>
|
|
<input name="login" type="text" /><br />
|
|
<label for="password">*<?php echo get_lang('Password'); ?></label>
|
|
<input name="password" type="password" /><br />
|
|
</div>
|
|
</form>
|
|
<div id="login-form-submit" class="form-submit" onclick="document.forms['login-form'].submit();">
|
|
<span><?php echo get_lang('LoginEnter'); ?></span>
|
|
</div> <!-- #form-submit -->
|
|
</div> <!-- #form -->
|
|
<div id="footer">
|
|
<img src="<?php echo api_get_path(WEB_PATH); ?>/plugin/oauth2/localLogin/images/footer.png" />
|
|
</div> <!-- #footer -->
|
|
</div> <!-- #wrapper -->
|
|
</body>
|
|
</html>
|