diff --git a/frontend/profile/index.html b/frontend/profile/index.html
index 1fb7dc1..41c94d1 100644
--- a/frontend/profile/index.html
+++ b/frontend/profile/index.html
@@ -13,20 +13,23 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/frontend/scripts/devices.js b/frontend/scripts/devices.js
index e958d0f..5d6418f 100644
--- a/frontend/scripts/devices.js
+++ b/frontend/scripts/devices.js
@@ -1,10 +1,10 @@
-import { getDevicesOnUserId, deleteDevice, update, add } from "./services/devices.service.js";
+import { getDevices, deleteDevice, update, add } from "./services/devices.service.js";
import { devices } from "../mockdata/devices.mockdata.js";
-let id = localStorage.getItem("id");
-// getDevicesOnUserId(id).then(res => {
-// buildTable(res)
-// })
+getDevices().then(res => {
+ buildTable(res)
+})
+
buildTable(devices);
let selectedReferenceId = null; // Store the selected referenceId
diff --git a/frontend/scripts/services/devices.service.js b/frontend/scripts/services/devices.service.js
index ee911aa..af8f2ec 100644
--- a/frontend/scripts/services/devices.service.js
+++ b/frontend/scripts/services/devices.service.js
@@ -1,17 +1,7 @@
-import { address } from "../../shared/constants.js";
import { request } from "../../shared/utils.js";
-export function getDevicesOnUserId(userId) {
- fetch(`${address}/device/${userId}`, {
- method: "GET",
- headers: {
- "Content-Type": "application/json"
- },
- body: JSON.stringify({ id: id })
- })
- .then(response => response.json())
- .then(data => console.log("Success:", data))
- .catch(error => console.error("Error:", error));
+export function getDevices() {
+ return request("GET", "/device");
}
export function update(ids) {
diff --git a/frontend/scripts/services/users.service.js b/frontend/scripts/services/users.service.js
index 23e22f2..7ab71d8 100644
--- a/frontend/scripts/services/users.service.js
+++ b/frontend/scripts/services/users.service.js
@@ -1,17 +1,8 @@
import { request } from "../../shared/utils.js";
-import { address } from "../../shared/constants.js";
-import { handleResponse } from "../../shared/utils.js";
-export function get(userId) {
- return fetch(`${address}/user/${userId}`, {
- method: "GET",
- headers: {
- "Content-Type": "application/json"
- },
- })
- .then(handleResponse)
- .catch(err => { error: err.message });
+export function get() {
+ return request("GET",`/user/get`)
}
export function login(usernameOrEmail, password) {
diff --git a/frontend/styles/common.css b/frontend/styles/common.css
index 4de8cbb..4dbcacc 100644
--- a/frontend/styles/common.css
+++ b/frontend/styles/common.css
@@ -8,3 +8,9 @@
margin-top: 1rem;
}
+.logout{
+ width: 20px;
+ height: 24px;
+ }
+
+
diff --git a/frontend/styles/profile.css b/frontend/styles/profile.css
index 87f727d..801b265 100644
--- a/frontend/styles/profile.css
+++ b/frontend/styles/profile.css
@@ -85,3 +85,12 @@ h2{
width: 90%;
}
+ .profileContainer {
+ margin: 2rem 0;
+ background-color: white;
+ border-radius: 8px;
+ border: 1px solid #DDD;
+ box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
+ width: 400px;
+}
+