forked from ZwiiCMS-Team/ZwiiCampus
27 lines
671 B
PHP
27 lines
671 B
PHP
<?php echo template::formOpen('userResetForm'); ?>
|
|
<div class="row">
|
|
<div class="col6">
|
|
<?php echo template::password('userResetNewPassword', [
|
|
'label' => 'Nouveau mot de passe'
|
|
]); ?>
|
|
</div>
|
|
<div class="col6">
|
|
<?php echo template::password('userResetConfirmPassword', [
|
|
'label' => 'Confirmation'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col3">
|
|
<?php echo template::button('userResetBack', [
|
|
'href' => helper::baseUrl(),
|
|
'value' => template::ico('left')
|
|
]); ?>
|
|
</div>
|
|
<div class="col3 offset6">
|
|
<?php echo template::submit('userResetSubmit', [
|
|
'value' => 'Valider'
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<?php echo template::formClose(); ?>
|