21 |
aurelien |
1 |
<h2> Recherche d'un utilisateur </h2>
|
|
|
2 |
|
|
|
3 |
<p> <h3> Rechercher un membre du reseau </h3>
|
|
|
4 |
</p>
|
|
|
5 |
<div id="contenu">
|
103 |
aurelien |
6 |
<form method="post" id="recherche" action="<?php $url_form = clone($base_url);
|
21 |
aurelien |
7 |
$url_form->setVariableRequete('id_annuaire',$aa_id_annuaire);
|
|
|
8 |
$url_form->setVariableRequete('m','annuaire_recherche_inscrit');
|
|
|
9 |
echo $url_form;
|
|
|
10 |
?>">
|
|
|
11 |
<div><?=$champs['nom'] ?></div><br />
|
|
|
12 |
|
|
|
13 |
<div><?=$champs['mail'] ?></div><br />
|
|
|
14 |
|
|
|
15 |
<?php if(isset($erreurs)) { ?>
|
|
|
16 |
<?php foreach($erreurs as $erreur) : ?>
|
|
|
17 |
<div style="color:#FF0000"> <?=$erreur ?> </div>
|
|
|
18 |
<?php endforeach; ?>
|
|
|
19 |
<?php } ?>
|
|
|
20 |
|
|
|
21 |
<div><label style="display:inline;margin-right:20px" for="exclusive"> Rechercher au moins un des termes </label><span><input type="checkbox" id="inclusive" name="inclusive" /></span></div><br />
|
|
|
22 |
<input type="submit" value="Rechercher" />
|
|
|
23 |
</form>
|
|
|
24 |
</div>
|