1 | 1 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,59 @@ |
1 |
+<html> |
|
2 |
+<head> |
|
3 |
+<title>Ville de Dragons</title> |
|
4 |
+<link rel='stylesheet' href='Style.css' type='text/css'> |
|
5 |
+</head> |
|
6 |
+<body> |
|
7 |
+<table border="0" height="100%" width="100%"> |
|
8 |
+ <tr> |
|
9 |
+ <td valign="center"> |
|
10 |
+ <table border="0" cellspacing="0" cellpadding="5" align="center"> |
|
11 |
+ <tr> |
|
12 |
+ <td width="400" align="center"> |
|
13 |
+ <h2>Connexion</h2> |
|
14 |
+ <BR> |
|
15 |
+ <p align="left"> |
|
16 |
+ Vous voici devant la page que tout le monde connait... Celle o� vous devez vous souvenir de vos identifiant afin de continuez votre partie... |
|
17 |
+ </p> |
|
18 |
+ </td> |
|
19 |
+ <td> |
|
20 |
+ <table border="1" cellspacing="0" cellpadding="5" align="center"> |
|
21 |
+ <form name='connexion' method='get' action='TraitementConnexion.php'> |
|
22 |
+ <tr> |
|
23 |
+ <td width="150" align="center"> |
|
24 |
+ Login: |
|
25 |
+ </td> |
|
26 |
+ <td> |
|
27 |
+ <input type='text' name='Login' size='15'> |
|
28 |
+ </td> |
|
29 |
+ </tr> |
|
30 |
+ <tr> |
|
31 |
+ <td width="150" align="center"> |
|
32 |
+ Mot de Passe: |
|
33 |
+ </td> |
|
34 |
+ <td> |
|
35 |
+ <input type='text' name='Pass' size='15'> |
|
36 |
+ </td> |
|
37 |
+ </tr> |
|
38 |
+ <?php |
|
39 |
+ if(isset($_GET['erreur'])){ |
|
40 |
+ echo "<tr><td colspan='2' width='150' align='center'>"; |
|
41 |
+ echo 'Bah alors .... Allez tu as le droit � encore une chance!!!'; |
|
42 |
+ echo "</td></tr>"; |
|
43 |
+ } |
|
44 |
+ ?> |
|
45 |
+ <tr> |
|
46 |
+ <td colspan="2" width="150" align="center"> |
|
47 |
+ <input type='submit' value='Connexion'> |
|
48 |
+ </td> |
|
49 |
+ </tr> |
|
50 |
+ </form> |
|
51 |
+ </table> |
|
52 |
+ </td> |
|
53 |
+ </tr> |
|
54 |
+ </table> |
|
55 |
+ </td> |
|
56 |
+ </tr> |
|
57 |
+</table> |
|
58 |
+</body> |
|
59 |
+</html> |
|
0 | 60 |
\ No newline at end of file |