diff --git a/404.php b/404.php
index 710be83..8ef14a2 100644
--- a/404.php
+++ b/404.php
@@ -15,7 +15,7 @@
Si vous le voulez , vous pouvez essayer de trouver le code html de votre page web là dedans:
-
+
Plus
diff --git a/chatTest/chat.css b/chatTest/chat.css
deleted file mode 100644
index 3e2b16e..0000000
--- a/chatTest/chat.css
+++ /dev/null
@@ -1,56 +0,0 @@
-/* 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
deleted file mode 100644
index 39d9d9d..0000000
--- a/chatTest/chat.php
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
-
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 ';
- }
-}
-?>
-
-
-
-
-
-
-