connexion.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>Connexion</h2>
 			<BR>
 			<p align="left">
 			Vous voici devant la page que tout le monde connait... Celle o� vous devez vous souvenir de vos identifiant afin de continuez votre partie...
 			</p>
 			</td>
 			<td>
 			<table border="1" cellspacing="0" cellpadding="5" align="center">
 			<form name='connexion' method='get' action='TraitementConnexion.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>
 			<?php 
 				if(isset($_GET['erreur'])){
 					echo "<tr><td colspan='2' width='150' align='center'>";
 					echo 'Bah alors .... Allez tu as le droit � encore une chance!!!';
 					echo "</td></tr>";
 				}
 			?>
 			<tr>
 				<td colspan="2" width="150" align="center">
 					<input type='submit' value='Connexion'>
 				</td>
 			</tr>
 			</form>
 			</table>
 			</td>
 		</tr>
 	</table>
 	</td>
 	</tr>
 </table>
 </body>
 </html>