ZwiiCMS, le gestionnaire de site Web sans base de données à installer.
Conçu en 2008 par Rémi Jean, le développement a été repris par Frédéric Tempez en 2018.
zwii cms nosql json flat file
https://www.zwiicms.fr
You can not 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
20 lines
554 B
<?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(); ?>
|