diff --git a/frontend/src/main.js b/frontend/src/main.js
index a629ce3..714bffa 100644
--- a/frontend/src/main.js
+++ b/frontend/src/main.js
@@ -16,7 +16,7 @@ async function fetchAndDisplayData() {
dataContainer.textContent = 'No data found';
return;
}
-
+
// Create HTML for the data
const html = `
@@ -30,6 +30,9 @@ async function fetchAndDisplayData() {
Avatar:${item.avatar}
Initial Password: ${item.password}
Birthdate: ${new Date(item.birthdate).toDateString()}
+ Registered: ${new Date(item.registeredAt).toDateString()}
+ Created On: ${new Date(item.createdAt).toDateString()}
+ Updated On: ${new Date(item.updatedAt).toDateString()}
Profile Bio: ${item.profile?.bio || 'N/A'}