diff --git a/401.php b/401.php
index 4d27527..681f3eb 100644
--- a/401.php
+++ b/401.php
@@ -1,18 +1,23 @@
+
-
+
+
+
+
-
+
+
401 Unauthorized
Une authentification est nécessaire
pour accéder à la ressource.
-
+
-
+
\ No newline at end of file
diff --git a/403.php b/403.php
index d293f1f..7b431b9 100644
--- a/403.php
+++ b/403.php
@@ -1,16 +1,17 @@
+
-
+
-
+
403 Forbidden
Les droits d'accès ne vous permettent
pas d'accéder à la ressource.
-
+
-
+
\ No newline at end of file
diff --git a/404.php b/404.php
index 733b2a0..710be83 100644
--- a/404.php
+++ b/404.php
@@ -1,17 +1,43 @@
+
-
+
-
+
404 Not Found
La page demandée demeure introuvable.
Cette dernière n'existe plus ou pas encore.
Bah au pire c'est pareil xD
-
+
-
+ Si vous le voulez , vous pouvez essayer de trouver le code html de votre page web là dedans:
+
+
+
+
+ Plus
+
+
+
\ No newline at end of file
diff --git a/40A.php b/40A.php
index 2606692..d49d3a4 100644
--- a/40A.php
+++ b/40A.php
@@ -1,17 +1,18 @@
+
-
+
-
+
40A Id Not Yet Assigned
La valeur envoyé ne correspond
actuellement à aucun
élément existant sur le site.
-
+
-
+
\ No newline at end of file
diff --git a/base.php b/base.php
index 5cfa5ce..f2ac786 100644
--- a/base.php
+++ b/base.php
@@ -1,11 +1,15 @@
+
-
+
-
-
-
+
+
+
\ No newline at end of file
diff --git a/change_password.php b/change_password.php
new file mode 100644
index 0000000..de3113f
--- /dev/null
+++ b/change_password.php
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+ Votre mot de passe à bien été changé !
+
+
+
\ No newline at end of file
diff --git a/chatTest/chat.css b/chatTest/chat.css
new file mode 100644
index 0000000..3e2b16e
--- /dev/null
+++ b/chatTest/chat.css
@@ -0,0 +1,56 @@
+/* CSS Document */
+body {
+ font:12px arial;
+ color: #222;
+ text-align:center;
+ padding:35px; }
+
+form, p, span {
+ margin:0;
+ padding:0; }
+
+input { font:12px arial; }
+
+a {
+ color:#0000FF;
+ text-decoration:none; }
+
+ a:hover { text-decoration:underline; }
+
+#wrapper, #loginform {
+ margin:0 auto;
+ padding-bottom:25px;
+ background:#EBF4FB;
+ width:504px;
+ border:1px solid #ACD8F0; }
+
+#loginform { padding-top:18px; }
+
+ #loginform p { margin: 5px; }
+
+#chatbox {
+ text-align:left;
+ margin:0 auto;
+ margin-bottom:25px;
+ padding:10px;
+ background:#fff;
+ height:270px;
+ width:430px;
+ border:1px solid #ACD8F0;
+ overflow:auto; }
+
+#usermsg {
+ width:395px;
+ border:1px solid #ACD8F0; }
+
+#submit { width: 60px; }
+
+.error { color: #ff0000; }
+
+#menu { padding:12.5px 25px 12.5px 25px; }
+
+.welcome { float:left; }
+
+.logout { float:right; }
+
+.msgln { margin:0 0 2px 0; }
\ No newline at end of file
diff --git a/chatTest/chat.php b/chatTest/chat.php
new file mode 100644
index 0000000..39d9d9d
--- /dev/null
+++ b/chatTest/chat.php
@@ -0,0 +1,84 @@
+
+
+
+
+Chat - Customer Module
+
+
+
+
+
+
+
+session_start();
+
+function loginForm(){
+ echo'
+
+ ';
+}
+
+if(isset($_POST['enter'])){
+ if($_POST['name'] != ""){
+ $_SESSION['name'] = stripslashes(htmlspecialchars($_POST['name']));
+ }
+ else{
+ echo 'Please type in a name';
+ }
+}
+?>
+
+
+
+
+
+
+