1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
| <div class="titre">Mon compte<br /></div>
<br />
<div class="sous_titre">Informations Personnelles</div>
<hr width="90%" size="1">
<div id="fenetre_l2">
<div id="header_l2">
<div id="coin_gauche">
</div>
<div id="fenetre_centre"><h3>Informations de <?php echo ucfirst($_SESSION['login']); ?></h3>
</div>
<div id="coin_droit">
</div>
</div>
<div id="fenetre_contenu">
<br />
<br />
<p>Les informations relatives à votre compte permettrons une mise à jour de votre profil. Ne saississez pas un champs que vous souhaitez garder secret. La plupart de ces informations seront utilisées lors de la création du Melichat'</p>
<p><img src="./images/hr_L2.gif" alt="separateur" class="hr_l2" /></p>
<br />
<p><a href="index.php?rubrique=monCompte#top">Retour</a></p>
<div id="fond_noir">
<form method="post" action="index.php?rubrique=monCompteEdit">
<div id="demi_bloc">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td>Identifiant :</td>
<td>
</td>
</tr>
<tr>
<td>Prénom :</td>
<td><input type="text" name="userFName" id="userName" /></td>
</tr>
<tr>
<td>Nom :</td>
<td><input type='text' name='userLName' /></td>
</tr>
<tr>
<td>Mail :</td>
<td><input type='text' name='userMail' /></td>
</tr>
<tr>
<td>Site web :</td>
<td><input type='text' name='userWebSite' /></td>
</tr>
</table>
</div>
<div id="center_bloc">
<br /><br /><br /><br /><br /><br /><br />
</div>
<div id="demi_bloc">
<table>
<tr>
<td width="85px">Adresse :</td>
<td><input type='text' name='userAdress' /></td>
</tr>
<tr>
<td>Rue :</td>
<td></td>
<tr>
<td>Code Postal :</td>
<td></td>
</tr>
</table>
</div>
</form>
</div>
<p><a href="index.php?rubrique=menu#top">Retour au menu</a></p>
</div>
<div id="footer_l2">
<div id="coin_bas_gauche">
</div>
<div id="fenetre_bas_centre">
</div>
<div id="coin_bas_droit">
</div>
</div>
</div> |