diff --git a/Pages/admin/appAdmin.js b/Pages/admin/appAdmin.js
deleted file mode 100644
index bd9d358..0000000
--- a/Pages/admin/appAdmin.js
+++ /dev/null
@@ -1,34 +0,0 @@
-window.onload = function() {
- showPopup();
- };
-
-
-
-function done() {
- document.getElementById("popup").style.display = "none";
- var password = document.getElementById("pass").value;
- if(password=='4'){
- prompt('oi')
- }
- else{
- prompt("no")
- }
- //DO STUFF WITH PASSWORD HERE
-};
-
-function showPopup() {
- document.getElementById("popup").style.display = "block";
- var input = document.getElementById("pass");
- input.focus();
- // Execute a function when the user presses a key on the keyboard
- input.addEventListener("keypress", function(event) {
- console.log("oui");
- // If the user presses the "Enter" key on the keyboard
- if (event.key === "Enter") {
- // Cancel the default action, if needed
- event.preventDefault();
- // Trigger the button element with a click
- document.getElementById("buttonOK").click();
- }
- });
-}
\ No newline at end of file
diff --git a/Pages/basket.html b/Pages/basket.html
deleted file mode 100644
index 563849c..0000000
--- a/Pages/basket.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
A1-CSI
-
A1-CIR
-
A2-CSI
-
A2-CIR
-
A3
-
M1
-
M2
-
Rank
-
-
-
A1-CIR
-
X
-
2-0
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
1
-
-
-
A1-CSI
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
2
-
-
-
A2-CSI
-
0-2
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
3
-
-
-
A2-CIR
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
4
-
-
-
A3
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
5
-
-
-
M1
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
6
-
-
-
M2
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
TBD
-
7
-
-
-
-
-
-
-
-
-
-
Match en Cours
-
A2-CIR
-
-
A1-CSI
-
2
-
-
-
0
-
-
\ No newline at end of file
diff --git a/Server/client.js b/Server/client.js
deleted file mode 100644
index 80be3ad..0000000
--- a/Server/client.js
+++ /dev/null
@@ -1,59 +0,0 @@
-// Get net module
-const net = require('net');
-
-//Configuration ===================================
-const port = 8888;
-//=================================================
-
-//================= Client 1 ==========================
-//Create the socket client.
-const client1 = new net.Socket();
-
-//Connect to the server on the configured port
-client1.connect(port,function(){
- //Log when the connection is established
- console.log(`Cleint 1 :Connected to server on port ${port}`);
-
- //Try to send data to the server
- client1.write('Hi from the client 1');
-
-});
-//Handle data coming from the server
-client1.on('data',function(data){
- console.log(`Client 1 received from server : ${data}`);
-});
-// Handle connection close
-client1.on('close',function(){
- console.log('Cleint 1 :Connection Closed');
-});
-//Handle error
-client1.on('error',function(error){
- console.error(`Connection Error ${error}`);
-});
-
-//================= Client 2 ==========================
-
-//Create the socket client.
-const client2 = new net.Socket();
-
-//Connect to the server on the configured port
-client2.connect(port,function(){
- //Log when the connection is established
- console.log(`Cleint 2 : Connected to server on port ${port}`);
-
- //Try to send data to the server
- client2.write('Hi from the client 2');
-
-});
-//Handle data coming from the server
-client2.on('data',function(data){
- console.log(`Client 2 received from server : ${data}`);
-});
-// Handle connection close
-client2.on('close',function(){
- console.log('Cleint 2 : Connection Closed');
-});
-//Handle error
-client2.on('error',function(error){
- console.error(`Connection Error ${error}`);
-});
\ No newline at end of file
diff --git a/Server/package.json b/Server/package.json
deleted file mode 100644
index 7ab1979..0000000
--- a/Server/package.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "name": "server",
- "version": "1.0.0",
- "description": "",
- "main": "client.js",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1",
- "start": "node server.js"
- },
- "keywords": [],
- "author": "",
- "license": "ISC"
-}
diff --git a/Server/server.js b/Server/server.js
deleted file mode 100644
index 2794d8d..0000000
--- a/Server/server.js
+++ /dev/null
@@ -1,11 +0,0 @@
-const http = require('http');
-
-http.createServer((req, res) => {
-
- res.writeHead(200, { 'Content-Type': 'text/plain' });
- res.write('Hello there');
- res.end();
-
-}).listen(8080);
-
-console.log('server running on port 8080');
\ No newline at end of file
diff --git a/index.html b/index.html
index 4b81dd4..03b5ca8 100644
--- a/index.html
+++ b/index.html
@@ -1,11 +1,11 @@
-
-
+
+
-
-
+
+
Acceuil
- Basket
+ BasketHandBadVolley
diff --git a/styles/StyleBracket.css b/public_html/css/StyleBracket.css
similarity index 100%
rename from styles/StyleBracket.css
rename to public_html/css/StyleBracket.css
diff --git a/styles/style.css b/public_html/css/style.css
similarity index 100%
rename from styles/style.css
rename to public_html/css/style.css
diff --git a/styles/styleAdminPage.css b/public_html/css/styleAdminPage.css
similarity index 100%
rename from styles/styleAdminPage.css
rename to public_html/css/styleAdminPage.css
diff --git a/styles/stylePages.css b/public_html/css/stylePages.css
similarity index 100%
rename from styles/stylePages.css
rename to public_html/css/stylePages.css
diff --git a/styles/font/BebasNeue-Regular.otf b/public_html/font/font/BebasNeue-Regular.otf
similarity index 100%
rename from styles/font/BebasNeue-Regular.otf
rename to public_html/font/font/BebasNeue-Regular.otf
diff --git a/styles/font/BebasNeue-Regular.woff b/public_html/font/font/BebasNeue-Regular.woff
similarity index 100%
rename from styles/font/BebasNeue-Regular.woff
rename to public_html/font/font/BebasNeue-Regular.woff
diff --git a/styles/font/BebasNeue-Regular.woff2 b/public_html/font/font/BebasNeue-Regular.woff2
similarity index 100%
rename from styles/font/BebasNeue-Regular.woff2
rename to public_html/font/font/BebasNeue-Regular.woff2
diff --git a/styles/font/scoreboard.woff b/public_html/font/font/scoreboard.woff
similarity index 100%
rename from styles/font/scoreboard.woff
rename to public_html/font/font/scoreboard.woff
diff --git a/images/DAYnNGH.png b/public_html/img/DAYnNGH.png
similarity index 100%
rename from images/DAYnNGH.png
rename to public_html/img/DAYnNGH.png
diff --git a/images/HomeIcon.png b/public_html/img/HomeIcon.png
similarity index 100%
rename from images/HomeIcon.png
rename to public_html/img/HomeIcon.png
diff --git a/images/InterPromo.png b/public_html/img/InterPromo.png
similarity index 100%
rename from images/InterPromo.png
rename to public_html/img/InterPromo.png
diff --git a/images/Promos/A3.jpg b/public_html/img/Promos/A3.jpg
similarity index 100%
rename from images/Promos/A3.jpg
rename to public_html/img/Promos/A3.jpg
diff --git a/images/SignB.png b/public_html/img/SignB.png
similarity index 100%
rename from images/SignB.png
rename to public_html/img/SignB.png
diff --git a/images/SignN.png b/public_html/img/SignN.png
similarity index 100%
rename from images/SignN.png
rename to public_html/img/SignN.png
diff --git a/images/Versus.png b/public_html/img/Versus.png
similarity index 100%
rename from images/Versus.png
rename to public_html/img/Versus.png