mirror of
https://grond.iut-fbleau.fr/stiti/SAE_2.02
synced 2024-11-09 21:11:40 +01:00
24 lines
971 B
PHP
24 lines
971 B
PHP
<h1 class="confirmation-title">Confirmation d'inscription</h1>
|
|
<?php if ($this->session->flashdata('success')): ?>
|
|
<p class="confirmation-error"><?php echo $this->session->flashdata('success'); ?></p>
|
|
<?php endif; ?>
|
|
<?php if ($this->session->flashdata('error')): ?>
|
|
<p class="confirmation-error"><?php echo $this->session->flashdata('error'); ?></p>
|
|
<?php endif; ?>
|
|
|
|
<?php echo form_open('utilisateur/confirmer', array('class' => 'confirmation-form')); ?>
|
|
<div>
|
|
<label for="email">Email</label>
|
|
<input type="text" id="email" name="email" value="<?php echo set_value('email'); ?>">
|
|
<?php echo form_error('email'); ?>
|
|
</div>
|
|
<div>
|
|
<label for="code">Code de confirmation</label>
|
|
<input type="text" id="code" name="code" value="<?php echo set_value('code'); ?>">
|
|
<?php echo form_error('code'); ?>
|
|
</div>
|
|
<div>
|
|
<button type="submit">Confirmer</button>
|
|
</div>
|
|
<?php echo form_close(); ?>
|