You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
52 lines
1.5 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
/**
|
|
* Quick form to ask for password reminder.
|
|
*
|
|
* @package chamilo.custompages
|
|
*/
|
|
require_once api_get_path(SYS_PATH).'main/inc/global.inc.php';
|
|
require_once __DIR__.'/language.php';
|
|
|
|
$rootWeb = api_get_path('WEB_PATH');
|
|
?>
|
|
<html>
|
|
<head>
|
|
<title><?php echo custompages_get_lang('LostPassword'); ?></title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<script type="text/javascript" src="<?php echo $rootWeb; ?>web/assets/jquery/dist/jquery.min.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
// Handler pour la touche retour
|
|
$('input').keyup(function(e) {
|
|
if (e.keyCode == 13) {
|
|
$('#lostpassword-form').submit();
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="backgroundimage">
|
|
<img src="/custompages/images/page-background.png" class="backgroundimage" />
|
|
</div>
|
|
<div id="wrapper">
|
|
<div id="header">
|
|
<img src="../../custompages/images/header.png" alt="Ambassador logo" />
|
|
</div> <!-- #header -->
|
|
<div id="lostpassword-form-box" class="form-box">
|
|
<?php
|
|
if (isset($content['info']) && !empty($content['info'])) {
|
|
echo '<div id="registration-form-error" class="form-error"><ul>'.$content['info'].'</ul></div>';
|
|
}
|
|
|
|
echo isset($content['form']) ? $content['form'] : '';
|
|
?>
|
|
</div> <!-- #form -->
|
|
<div id="footer">
|
|
<img src="../../custompages/images/footer.png" />
|
|
</div> <!-- #footer -->
|
|
</div> <!-- #wrapper -->
|
|
</body>
|
|
</html>
|
|
|