Go to most recent revision |
    Details |
    Last modification |
    View Log
    | RSS feed
  
  
  
     
        
        | Rev | Author | Line No. | Line | 
     
     
        
           | 7 | aurelien | 1 | <h2> Inscription </h2>
 | 
        
           |  |  | 2 | <div id="contenu">
 | 
        
           | 103 | aurelien | 3 | 	<form method="post" id="inscription" action="<?php $url_form = clone($base_url);
 | 
        
           | 7 | aurelien | 4 | 				$url_form->setVariableRequete('m','annuaire_ajout_inscription');
 | 
        
           |  |  | 5 | 				echo $url_form;
 | 
        
           |  |  | 6 | 	 		?>">
 | 
        
           |  |  | 7 | 			<?php foreach($champs as $champ) : ?>
 | 
        
           |  |  | 8 | 					<div> <?=$champ ?> </div><br />
 | 
        
           |  |  | 9 | 			<?php endforeach; ?>
 | 
        
           |  |  | 10 |   | 
        
           |  |  | 11 | 			<input type="hidden" name="aa_id_annuaire" id="aa_id_annuaire" value="<?=$aa_id_annuaire ?>">
 | 
        
           |  |  | 12 |   | 
        
           |  |  | 13 | 			<?php if(isset($erreurs)) { ?>
 | 
        
           |  |  | 14 | 				<?php foreach($erreurs as $erreur) : ?>
 | 
        
           |  |  | 15 | 					<div style="color:#FF0000"> <?=$erreur ?> </div>
 | 
        
           |  |  | 16 | 				<?php endforeach; ?>
 | 
        
           |  |  | 17 | 			<?php } ?>
 | 
        
           |  |  | 18 | 		<input type="submit" value="Valider" />
 | 
        
           |  |  | 19 | 	</form>
 | 
        
           |  |  | 20 | </div>
 |