Deltacms/core/module/user/view/forgot/forgot.php

22 lines
710 B
PHP
Raw Normal View History

2022-03-06 13:35:21 +01:00
<?php echo template::formOpen('userForgotForm');
// Lexique
2022-09-11 09:42:42 +02:00
include('./core/module/user/lang/'. $this->getData(['config', 'i18n', 'langAdmin']) . '/lex_user.php');
echo template::text('userForgotId', [
'label' => $text['core_user_view']['forgot'][0]
2022-01-31 09:10:49 +01:00
]); ?>
<div class="row">
<div class="col3 offset6">
<?php echo template::button('userForgotBack', [
'href' => helper::baseUrl() . 'user/login/' . $this->getUrl(2),
'ico' => 'left',
2022-09-11 09:42:42 +02:00
'value' => $text['core_user_view']['forgot'][1]
2022-01-31 09:10:49 +01:00
]); ?>
</div>
<div class="col3">
<?php echo template::submit('userForgotSubmit', [
2022-09-11 09:42:42 +02:00
'value' => $text['core_user_view']['forgot'][2]
2022-01-31 09:10:49 +01:00
]); ?>
</div>
</div>
<?php echo template::formClose(); ?>