2024-11-14 18:35:53 +01:00
|
|
|
<?php echo template::formOpen('userAuthForm'); ?>
|
|
|
|
<div class="row">
|
2024-12-07 18:10:54 +01:00
|
|
|
<div class="col4 offset4">
|
2024-11-14 18:35:53 +01:00
|
|
|
<?php echo template::text('userAuthKey', [
|
2024-11-16 08:38:39 +01:00
|
|
|
'label' => helper::translate('Clé reçue par couriel')
|
2024-11-14 18:35:53 +01:00
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row" id="buttonsContainer">
|
|
|
|
<div class="col2" id="backContainer">
|
|
|
|
<?php echo template::button('userAuthBack', [
|
|
|
|
'href' => $this->getUrl(2) ? helper::baseUrl() . ' user/login' . str_replace('_', '/', str_replace('__', '#', $this->getUrl(2))) : helper::baseUrl() . ' user/login',
|
|
|
|
'value' => template::ico('left')
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2024-12-07 18:10:54 +01:00
|
|
|
<div class="col2 offset8" id="loginContainer">
|
2024-11-14 18:35:53 +01:00
|
|
|
<?php echo template::submit('userLoginSubmit', [
|
2024-12-07 18:10:54 +01:00
|
|
|
'value' => template::ico('check'),
|
|
|
|
'ico' => '',
|
2024-11-14 18:35:53 +01:00
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo template::formClose(); ?>
|