tao-test/app/tao/views/templates/passwordRecovery/index.tpl

20 lines
526 B
Smarty
Raw Normal View History

2022-08-29 20:14:13 +02:00
<?php
use oat\tao\helpers\Layout;
?>
<div class="password-recovery-form entry-point entry-point-container">
<h1><?= __("Forgot your password?") ?></h1>
<?= get_data('form') ?>
</div>
<script>
requirejs.config({
config: {
'tao/controller/passwordRecovery': {
'message' : {
'info': <?=json_encode(get_data('msg'))?>,
'error': <?=json_encode(urldecode(get_data('errorMessage')))?>
}
}
}
});
</script>