diff --git a/frontend/src/app/components/header/components/Profile.module.css b/frontend/src/app/components/header/components/Profile.module.css
index 64ceacd..b041423 100644
--- a/frontend/src/app/components/header/components/Profile.module.css
+++ b/frontend/src/app/components/header/components/Profile.module.css
@@ -86,6 +86,7 @@
box-shadow: 0 2px 15px 0 color(display-p3 0 0 0 / 0.25);
cursor: pointer;
position: absolute;
+ z-index: 10;
top: 100%;
margin-top: 3px;
}
diff --git a/frontend/src/app/users/add/page.jsx b/frontend/src/app/users/add/page.jsx
index deebbfb..981a24b 100644
--- a/frontend/src/app/users/add/page.jsx
+++ b/frontend/src/app/users/add/page.jsx
@@ -1,13 +1,28 @@
import React from "react";
import TopHeader from "@/app/components/topHeader/TopHeader";
import globalStyle from "../../globalStyle.module.css";
+import addUserStyle from "./styles.module.css";
const page = () => {
return (
-
+
+
+ {/* Input fields Container */}
+
+ {/* User Details */}
+
+ {/* Permissions */}
+
+
+
diff --git a/frontend/src/app/users/add/styles.module.css b/frontend/src/app/users/add/styles.module.css
new file mode 100644
index 0000000..4fa81fd
--- /dev/null
+++ b/frontend/src/app/users/add/styles.module.css
@@ -0,0 +1,36 @@
+.addUserContainer {
+ background-color: red;
+ display: flex;
+ align-items: flex-start;
+ gap: 24px;
+ flex: 1 0 0;
+ align-self: stretch;
+}
+
+.inputFieldContainer {
+ display: flex;
+ align-items: flex-start;
+ gap: 24px;
+ flex: 1 0 0;
+ align-self: stretch;
+}
+
+.userDetails {
+ display: flex;
+ width: 400px;
+ padding: 24px 24px 48px 24px;
+ flex-direction: column;
+ align-items: flex-start;
+ border-radius: 6px;
+ background: #1d1e2a;
+ background: color(display-p3 0.1137 0.1176 0.1608);
+}
+
+.userPermissions {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ flex: 1 0 0;
+ align-self: stretch;
+ border-radius: 6px;
+}