diff --git a/.gitignore b/.gitignore
index 600d2d3..e69de29 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +0,0 @@
-.vscode
\ No newline at end of file
diff --git a/agent.html b/agent.html
new file mode 100644
index 0000000..48df1f0
--- /dev/null
+++ b/agent.html
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SpaceTraders
+
+
+
+
+
+
+ PAGE D'ACCEUIL
+
+
+
+
+
+
\ No newline at end of file
diff --git a/css/auth.css b/css/auth.css
index 89c4fda..aa4a0d6 100644
--- a/css/auth.css
+++ b/css/auth.css
@@ -1,3 +1,5 @@
+/* Copyright © 2023 Entreprise SpaceTarders */
+
* {
background-color: #272727;
}
@@ -58,4 +60,4 @@ button {
border-radius: 10px;
width: 100%;
margin-bottom: 10px;
-}
+}
\ No newline at end of file
diff --git a/css/global.css b/css/global.css
index 6ba3f15..3116868 100644
--- a/css/global.css
+++ b/css/global.css
@@ -1,3 +1,5 @@
+/* Copyright © 2023 Entreprise SpaceTarders */
+
* {
font-family: "Inter", sans-serif;
box-sizing: border-box;
@@ -31,19 +33,21 @@ html {
max-height: 50px;
}
-.page-change-button {
+.page-change-link {
padding-right: 10px;
}
-.page-change-button button {
+.page-change-link a {
margin: 2px;
color: black;
background-color: white;
- border: 1px solid white;
+ border: 2px solid white;
border-radius: 10px;
+
+ text-decoration: none;
}
-.page-change-button button:hover {
+.page-change-link a:hover {
border-color: #eab308;
background-color: #eab308;
transition: all 1s;
@@ -92,4 +96,4 @@ footer p {
#loginModal input {
margin-bottom: 10px;
-} */
+} */
\ No newline at end of file
diff --git a/index.html b/index.html
index 58fd362..c78c3c7 100644
--- a/index.html
+++ b/index.html
@@ -1,3 +1,5 @@
+
+
diff --git a/login.html b/login.html
index bb73ef8..566ee28 100644
--- a/login.html
+++ b/login.html
@@ -1,3 +1,5 @@
+
+
diff --git a/register.html b/register.html
index 7d16bf9..4682833 100644
--- a/register.html
+++ b/register.html
@@ -1,3 +1,5 @@
+
+
diff --git a/scripts/api/agent.js b/scripts/api/agent.js
index 6acb268..6bd2115 100644
--- a/scripts/api/agent.js
+++ b/scripts/api/agent.js
@@ -1,3 +1,5 @@
+// Copyright © 2023 Entreprise SpaceTarders
+
"use strict";
export async function createAgent(symbol, faction) {
diff --git a/scripts/api/systems.js b/scripts/api/systems.js
index 8d9d4f6..60c1c19 100644
--- a/scripts/api/systems.js
+++ b/scripts/api/systems.js
@@ -1,3 +1,5 @@
+// Copyright © 2023 Entreprise SpaceTarders
+
"use strict";
export async function listSystems(limit, page) {
diff --git a/scripts/auth.js b/scripts/auth.js
index 3c3198c..0eaa0d8 100644
--- a/scripts/auth.js
+++ b/scripts/auth.js
@@ -1,3 +1,5 @@
+// Copyright © 2023 Entreprise SpaceTarders
+
"use strict";
import { getAgent } from "./api/agent.js";
diff --git a/scripts/main.js b/scripts/main.js
index 4b27692..631fc7a 100644
--- a/scripts/main.js
+++ b/scripts/main.js
@@ -1,3 +1,5 @@
+// Copyright © 2023 Entreprise SpaceTarders
+
"use strict";
import { login } from './auth.js'