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

56 lines
1.8 KiB
PHP
Raw Normal View History

2018-04-02 08:29:19 +02:00
<?php echo template::formOpen('userLoginForm'); ?>
<div class="row">
<div class="col6">
<?php echo template::text('userLoginId', [
'label' => 'Identifiant',
'value' => $module::$userId
2018-04-02 08:29:19 +02:00
]); ?>
</div>
<div class="col6">
2021-12-17 18:18:24 +01:00
<?php if ($this->getData(['config', 'connect', 'showPassword']) === true) {
$passwordLabel = '<span id="passwordLabel">Mot de passe</span><span id="passwordIcon">'. template::ico('eye') . '</span>';
} else {
$passwordLabel = 'Mot de passe';
}
?>
2018-04-02 08:29:19 +02:00
<?php echo template::password('userLoginPassword', [
2021-12-17 18:18:24 +01:00
'label' => $passwordLabel
2018-04-02 08:29:19 +02:00
]); ?>
</div>
</div>
2020-09-29 19:03:35 +02:00
<?php if ($this->getData(['config', 'connect','captcha'])): ?>
<div class="row">
2020-09-30 17:37:26 +02:00
<div class="col12 textAlignCenter">
2020-10-11 19:29:33 +02:00
<?php echo template::captcha('userLoginCaptcha', [
2021-11-12 18:22:06 +01:00
'limit' => $this->getData(['config','connect', 'captchaStrong']),
'type' => $this->getData(['config','connect', 'captchaType'])
2020-10-11 19:29:33 +02:00
]); ?>
2020-09-29 19:03:35 +02:00
</div>
</div>
<?php endif;?>
2018-04-02 08:29:19 +02:00
<div class="row">
<div class="col6">
2021-10-22 18:00:57 +02:00
<?php echo template::checkbox('userLoginLongTime', true, 'Se souvenir de mon identifiant', [
2020-08-10 09:10:20 +02:00
'checked' => $module::$userLongtime
]); ?>
2018-04-02 08:29:19 +02:00
</div>
<div class="col6 textAlignRight">
<a href="<?php echo helper::baseUrl(); ?>user/forgot/<?php echo $this->getUrl(2); ?>">Mot de passe perdu ?</a>
</div>
</div>
<div class="row">
<div class="col3 offset6">
<?php echo template::button('userLoginBack', [
'href' => helper::baseUrl() . str_replace('_', '/', str_replace('__', '#', $this->getUrl(2))),
'ico' => 'left',
'value' => 'Annuler'
]); ?>
</div>
<div class="col3">
<?php echo template::submit('userLoginSubmit', [
'value' => 'Connexion',
'ico' => 'lock'
]); ?>
</div>
</div>
<?php echo template::formClose(); ?>