Browse code

Version initiale du programme sous forme de boucle conditionnelle

Emmanuel ROY authored on 01/05/2022 12:54:29
Showing 1 changed files
1 1
new file mode 100755
... ...
@@ -0,0 +1,71 @@
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>Inscription</h2>
14
+			<BR>
15
+			<p align="left">
16
+			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...
17
+			</p>
18
+			</td>
19
+			<td>
20
+			<table border="1" cellspacing="0" cellpadding="5" align="center">
21
+			<form name='Inscription' method='get' action='TraitementInscription.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
+			<tr>
39
+				<td width="150" align="center">
40
+					Veuillez r�entrer votre mot de passe...
41
+				</td>
42
+				<td>
43
+					<input type='text' name='Pass2' size='15'>
44
+				</td>
45
+			</tr>
46
+			<?php 
47
+				if(isset($_GET['erreurPass'])){
48
+					echo "<tr><td colspan='2' width='150' align='center'>";
49
+					if($_GET['erreurPass']==1){
50
+						echo 'Veuillez r�entrez votre pass... Les deux sont diff�rents..';
51
+					}else if($_GET['erreurPass']==2){
52
+						echo 'Veuillez choisir un autre login car celui-ci existe deja... Mettez des nombres apr�s ou tout autre chose comme ca...';
53
+					}
54
+					echo "</td></tr>";
55
+				}
56
+			?>
57
+			<tr>
58
+				<td colspan="2" width="150" align="center">
59
+					<input type='submit' value='Inscription'>
60
+				</td>
61
+			</tr>
62
+			</form>
63
+			</table>
64
+			</td>
65
+		</tr>
66
+	</table>
67
+	</td>
68
+	</tr>
69
+</table>
70
+</body>
71
+</html>
0 72
\ No newline at end of file