Index: backend/auth_form/views.py
===================================================================
--- backend/auth_form/views.py	(revision bbf0348d3fbf0f64e13f14295673c88d32d60cd2)
+++ backend/auth_form/views.py	(revision 7c84993a718badcdf1e031879aa961e86a0f5ef0)
@@ -54,5 +54,4 @@
     
     def get(self, request):
-        print(request.user)
         student = request.user.student
         serializer = StudentFormSerializer(student)
Index: frontend/src/App.tsx
===================================================================
--- frontend/src/App.tsx	(revision bbf0348d3fbf0f64e13f14295673c88d32d60cd2)
+++ frontend/src/App.tsx	(revision 7c84993a718badcdf1e031879aa961e86a0f5ef0)
@@ -4,5 +4,5 @@
 import Register from "./pages/Register";
 import Home from "./pages/Home";
-import Form from "./pages/Form";
+import Account from "./pages/Account";
 import PrivateRoute from "./components/PrivateRoute";
 import Navbar from "./components/Navbar";
@@ -29,8 +29,8 @@
       { path: "register", element: <Register /> },
       {
-        path: "form",
+        path: "account",
         element: (
           <PrivateRoute>
-            <Form />
+            <Account />
           </PrivateRoute>
         ),
Index: frontend/src/components/Navbar.tsx
===================================================================
--- frontend/src/components/Navbar.tsx	(revision bbf0348d3fbf0f64e13f14295673c88d32d60cd2)
+++ frontend/src/components/Navbar.tsx	(revision 7c84993a718badcdf1e031879aa961e86a0f5ef0)
@@ -3,35 +3,40 @@
 
 const Navbar: React.FC = () => {
-    const { isAuthenticated, logout } = useAuth();
-    const navigate = useNavigate();
+  const { isAuthenticated, logout } = useAuth();
+  const navigate = useNavigate();
 
-    const handleLogout = () => {
-        logout();
-        navigate("/");
-    }
-    console.log(isAuthenticated); // Log to check state changes
+  const handleLogout = () => {
+    logout();
+    navigate("/");
+  };
+  console.log(isAuthenticated); // Log to check state changes
 
-    return (
-        <nav className="p-4 bg-gray-800 text-white flex justify-between">
-          <div className="space-x-4">
-            <Link to="/">Home</Link>
-            <Link to="/subjects">Subjects</Link>
-            {isAuthenticated && <Link to="/form">Form</Link>}
-          </div>
-    
-          <div>
-            {isAuthenticated ? (
-              <button onClick={handleLogout} className="bg-red-500 px-3 py-1 rounded">
-                Logout
-              </button>
-            ) : (
-              <>
-                <Link to="/login" className="mr-3">Login</Link>
-                <Link to="/register">Register</Link>
-              </>
-            )}
-          </div>
-        </nav>
-      );
-    };
+  return (
+    <nav className="p-4 bg-gray-800 text-white flex justify-between">
+      <div className="space-x-4">
+        <Link to="/">Home</Link>
+        <Link to="/subjects">Subjects</Link>
+        {isAuthenticated && <Link to="/account">Account</Link>}
+      </div>
+
+      <div>
+        {isAuthenticated ? (
+          <button
+            onClick={handleLogout}
+            className="bg-red-500 px-3 py-1 rounded"
+          >
+            Logout
+          </button>
+        ) : (
+          <>
+            <Link to="/login" className="mr-3">
+              Login
+            </Link>
+            <Link to="/register">Register</Link>
+          </>
+        )}
+      </div>
+    </nav>
+  );
+};
 export default Navbar;
Index: ontend/src/pages/Form.tsx
===================================================================
--- frontend/src/pages/Form.tsx	(revision bbf0348d3fbf0f64e13f14295673c88d32d60cd2)
+++ 	(revision )
@@ -1,15 +1,0 @@
-import { useEffect } from 'react';
-
-const Form = () => {
-        useEffect(() => {
-            const fetchData = async () => {
-              const response = await fetch("http://localhost:8000/subjects");
-              const data = await response.json();
-              console.log(data);
-              console.log(data.subjects);
-            };
-            fetchData();
-          }, []);
-}
-
-export default Form;
