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

18 lines
517 B
PHP
Raw Normal View History

2018-04-02 08:29:19 +02:00
<?php echo template::formOpen('userForgotForm'); ?>
<?php echo template::text('userForgotId', [
'label' => 'Identifiant'
]); ?>
<div class="row">
2022-01-20 13:28:33 +01:00
<div class="col1 offset9">
2018-04-02 08:29:19 +02:00
<?php echo template::button('userForgotBack', [
'href' => helper::baseUrl() . 'user/login/' . $this->getUrl(2),
2022-01-20 13:28:33 +01:00
'value' => template::ico('left')
2018-04-02 08:29:19 +02:00
]); ?>
</div>
<div class="col3">
<?php echo template::submit('userForgotSubmit', [
'value' => 'Valider'
]); ?>
</div>
</div>
<?php echo template::formClose(); ?>