Subversion Repositories Applications.annuaire

Rev

Rev 312 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
428 aurelien 1
<h2> Modification de votre inscription </h2>
2
<div id="form_modification_inscription">
3
	<form method="post" id="inscription_modification" action="<?php $url_form = clone($base_url);
4
				$url_form->setVariableRequete('m','annuaire_modification_inscription');
5
				echo $url_form;
6
	 		?>">
7
 
8
	 		<h3> Mes coordonnées </h3>
9
 
10
	 		<div><?=$champs['pseudo'] ?></div>
11
	 		<div><?=$champs['utilise_pseudo'] ?></div><br />
12
 
13
	 		<div><?=$champs['date_naissance'] ?></div><br />
14
 
15
			<div><?=$champs['nom'] ?></div><br />
16
 
17
			<div><?=$champs['prenom'] ?></div><br />
18
 
19
			<div><?=$champs['mail'] ?></div><br />
20
 
21
			<div><?=$champs['pass'] ?></div><br />
22
 
23
			<div><?=$champs['pays'] ?></div><br />
24
 
25
			<div><?=$champs['adresse'] ?></div>
26
			<div><?=$champs['adresse_comp'] ?></div><br />
27
 
28
			<div><?=$champs['ville'] ?></div><br />
29
 
30
			<div><?=$champs['code_postal'] ?></div><br />
31
 
32
			<div><?=$champs['profil_prive'] ?></div><br />
33
 
34
			<h3> Mon parcours botanique </h3>
35
 
36
			<div><?=$champs['presentation'] ?></div><br />
37
 
38
			<div><?=$champs['experience_bota'] ?></div><br />
39
 
40
			<div><?=$champs['rapport_activite_pro_bota'] ?></div><br />
41
 
42
			<div><?=$champs['membre_asso_bota'] ?></div><br />
43
 
44
			<!-- <div ><?=$champs['flores_utilisees'] ?></div><br /> -->
45
 
46
			<div><?=$champs['specialite_bota_groupes'] ?></div><br />
47
 
48
			<!--<div><?=$champs['specialite_bota_approche'] ?></div><br /> -->
49
 
50
			<div><?=$champs['specialite_bota_geo'] ?></div><br />
51
 
52
			<div><?=$champs['langues'] ?></div><br />
53
 
54
 
55
			<h3> Mon parcours de telabotaniste </h3>
56
 
57
			<div><?=$champs['comment_connu_tela'] ?></div><br />
58
 
59
			<div><?=$champs['outils_reseau'] ?></div><br />
60
 
61
			<div><?=$champs['etre_tela_botaniste'] ?></div><br />
62
 
63
			<div><?=$champs['etre_plante_sauvage'] ?></div><br />
64
 
65
			<div><?=$champs['hebergement'] ?></div><br />
66
 
67
			<h3> Environnement botanique </h3>
68
 
69
			<div><?=$champs['mon_blog'] ?></div><br />
70
 
71
			<div><?=$champs['sites_preferes'] ?></div><br />
72
 
73
			<h3> Appartenance à un organisme </h3>
74
 
75
			<div><?=$champs['organisme'] ?></div><br />
76
 
77
			<div><?=$champs['fonction'] ?></div><br />
78
 
79
			<div><?=$champs['lettre_actu'] ?></div><br />
80
 
81
			<input type="hidden" name="aa_id_annuaire" id="aa_id_annuaire" value="<?=$aa_id_annuaire ?>">
82
			<input type="hidden" name="id_utilisateur" id="id_utilisateur" value="<?=$id_utilisateur ?>">
83
 
84
			<?php if(isset($erreurs)) { ?>
85
				<?php foreach($erreurs as $erreur) : ?>
86
					<div style="color:#FF0000"> <?=$erreur ?> </div>
87
				<?php endforeach; ?>
88
			<?php } ?>
89
		<input type="submit" value="Valider" />
90
		<a href="<?php $url_detail = clone($base_url);
91
				$url_detail->setVariableRequete('m','annuaire_fiche_utilisateur_consultation');
92
				$url_detail->setVariableRequete('id_annuaire',$aa_id_annuaire);
93
				$url_detail->setVariableRequete('id_utilisateur',$id_utilisateur);
94
				echo $url_detail; ?>" /> Annuler </a>
95
	</form>
154 aurelien 96
</div>