diff --git a/frontend/vanilla/css/organization.css b/frontend/vanilla/css/organization.css new file mode 100644 index 0000000..c9b1653 --- /dev/null +++ b/frontend/vanilla/css/organization.css @@ -0,0 +1,43 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + background-color: #f4f4f4; +} +.container { + max-width: 800px; + margin: 20px auto; + background-color: #fff; + padding: 20px; + border-radius: 8px; + box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); + position: relative; /* To position the badge relative to the container */ +} +h1, h2 { + text-align: center; +} +img.logo { + width: 150px; + height: 150px; + border-radius: 50%; +} +.organization-details { + margin-bottom: 10px; +} +.hiring-status { + margin-top: 20px; + text-align: center; +} +.logo-div { + text-align: center; +} +.hiring-badge { + position: absolute; + top: 20px; + right: 20px; + background-color: #4CAF50; + color: #fff; + padding: 5px 10px; + border-radius: 5px; + font-weight: bold; +} \ No newline at end of file diff --git a/frontend/vanilla/css/profile.css b/frontend/vanilla/css/profile.css index 38ac723..8402796 100644 --- a/frontend/vanilla/css/profile.css +++ b/frontend/vanilla/css/profile.css @@ -54,9 +54,9 @@ footer { } .profile-picture { - width: 150px; /* Adjust size as needed */ + width: 150px; height: 150px; - border-radius: 50%; /* Make it circular */ + border-radius: 50%; margin-bottom: 10px; } diff --git a/frontend/vanilla/html/organization.html b/frontend/vanilla/html/organization.html new file mode 100644 index 0000000..ab2e288 --- /dev/null +++ b/frontend/vanilla/html/organization.html @@ -0,0 +1,40 @@ + + + + + + Title + + + +
+
Now Hiring
+
+ +
+

Blink

+
+

Location:

+

Email:

+

Hiring:

+
+

About Us

+

Blink aims at creating a libre and decentralized LinkedIn alternative

+
+ + + + + + + + diff --git a/frontend/vanilla/html/userprofile.html b/frontend/vanilla/html/userprofile.html index 8f65be7..f4521ff 100644 --- a/frontend/vanilla/html/userprofile.html +++ b/frontend/vanilla/html/userprofile.html @@ -69,6 +69,7 @@ }); } else { + // To implement response = await fetch(`${API_URL}/person/${idToDisplay}`, { headers: { "Content-type": "application/json; charset=UTF-8",