inscription.php
4a503405
 <html>
 <head>
 <title>Ville de Dragons</title>
 <link rel='stylesheet' href='Style.css' type='text/css'>
 </head>
 <body>
 <table border="0" height="100%" width="100%">
 	<tr>
 	<td valign="center">
 	<table border="0" cellspacing="0" cellpadding="5" align="center">
 		<tr>
 			<td width="400" align="center">
 			<h2>Inscription</h2>
 			<BR>
 			<p align="left">
 			Essayez de remplir les champs convenablement, avec des mots dont vous vous souvienderez assez facilement car ce sont vos identifiant et votre mot de passe pour l'ensemble de la partie...
 			</p>
 			</td>
 			<td>
 			<table border="1" cellspacing="0" cellpadding="5" align="center">
 			<form name='Inscription' method='get' action='TraitementInscription.php'>
 			<tr>
 				<td width="150" align="center">
 					Login:
 				</td>
 				<td>
 					<input type='text' name='Login' size='15'>
 				</td>
 			</tr>
 			<tr>
 				<td width="150" align="center">
 					Mot de Passe:
 				</td>
 				<td>
 					<input type='text' name='Pass' size='15'>
 				</td>
 			</tr>
 			<tr>
 				<td width="150" align="center">
 					Veuillez r�entrer votre mot de passe...
 				</td>
 				<td>
 					<input type='text' name='Pass2' size='15'>
 				</td>
 			</tr>
 			<?php 
 				if(isset($_GET['erreurPass'])){
 					echo "<tr><td colspan='2' width='150' align='center'>";
 					if($_GET['erreurPass']==1){
 						echo 'Veuillez r�entrez votre pass... Les deux sont diff�rents..';
 					}else if($_GET['erreurPass']==2){
 						echo 'Veuillez choisir un autre login car celui-ci existe deja... Mettez des nombres apr�s ou tout autre chose comme ca...';
 					}
 					echo "</td></tr>";
 				}
 			?>
 			<tr>
 				<td colspan="2" width="150" align="center">
 					<input type='submit' value='Inscription'>
 				</td>
 			</tr>
 			</form>
 			</table>
 			</td>
 		</tr>
 	</table>
 	</td>
 	</tr>
 </table>
 </body>
 </html>