ZwiiCampus/module/suscribe/view/index/index.php

29 lines
864 B
PHP
Raw Normal View History

2023-11-03 18:31:35 +01:00
<?php echo template::formOpen('registrationAddForm'); ?>
2024-07-17 20:13:53 +02:00
<div class="<?php echo $this->getData(['module', $this->getUrl(0), 'config', 'layout']); ?>">
2023-11-17 17:53:55 +01:00
<?php echo template::text('registrationAddFirstname', [
'autocomplete' => 'off',
'label' => 'Prénom'
]); ?>
<?php echo template::text('registrationAddLastname', [
'autocomplete' => 'off',
'label' => 'Nom'
]); ?>
<?php echo template::text('registrationAddId', [
'autocomplete' => 'off',
'label' => 'Identifiant de connexion'
]); ?>
2024-07-17 20:13:53 +02:00
<?php echo template::mail('registrationAddMail', [
2023-11-17 17:53:55 +01:00
'autocomplete' => 'off',
2024-07-17 20:13:53 +02:00
'label' => 'Adresse électronique'
2023-11-17 17:53:55 +01:00
]); ?>
</div>
2024-07-17 20:13:53 +02:00
<div class='submitContainer'>
<div class="row">
<div class="col2 offset10">
<?php echo template::submit('registrationAddSubmit', [
'value' => 'Envoyer'
]); ?>
</div>
2023-11-03 18:31:35 +01:00
</div>
2023-11-17 17:53:55 +01:00
</div>
<?php echo template::formClose(); ?>