You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
554 B
PHP
20 lines
554 B
PHP
<?php echo template::formOpen('userForgotForm'); ?>
|
|
<?php echo template::text('userForgotId', [
|
|
'label' => 'Identifiant'
|
|
]); ?>
|
|
<div class="row">
|
|
<div class="col3 offset6">
|
|
<?php echo template::button('userForgotBack', [
|
|
'class' => 'buttonGrey',
|
|
'href' => helper::baseUrl() . 'user/login/' . $this->getUrl(2),
|
|
'ico' => 'left',
|
|
'value' => 'Retour'
|
|
]); ?>
|
|
</div>
|
|
<div class="col3">
|
|
<?php echo template::submit('userForgotSubmit', [
|
|
'value' => 'Valider'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<?php echo template::formClose(); ?>
|