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

18 lines
517 B
PHP

<?php echo template::formOpen('userForgotForm'); ?>
<?php echo template::text('userForgotId', [
'label' => 'Identifiant'
]); ?>
<div class="row">
<div class="col1 offset9">
<?php echo template::button('userForgotBack', [
'href' => helper::baseUrl() . 'user/login/' . $this->getUrl(2),
'value' => template::ico('left')
]); ?>
</div>
<div class="col3">
<?php echo template::submit('userForgotSubmit', [
'value' => 'Valider'
]); ?>
</div>
</div>
<?php echo template::formClose(); ?>