Index: frontend/src/components/Navbar.tsx
===================================================================
--- frontend/src/components/Navbar.tsx	(revision 6161e93bd3fd599e4b3fbd5febc22f25f7f192f4)
+++ frontend/src/components/Navbar.tsx	(revision 388ab1b03b9446398b51f8f4b26d8b8ce7bd0d6b)
@@ -1,3 +1,2 @@
-import axios from "axios";
 import { useEffect, useRef, useState } from "react";
 import { Link, useNavigate } from "react-router-dom";
@@ -16,5 +15,5 @@
 	const navigate = useNavigate();
 	const profileMenuRef = useRef<HTMLDivElement>(null);
-	const userInitial = user?.full_name.charAt(0).toUpperCase() || "F";
+	const userInitial = user?.full_name.charAt(0).toUpperCase() || "?";
 	// Close dropdown when clicking outside
 	useEffect(() => {
@@ -43,21 +42,21 @@
 	};
 
-	const testAccountLogin = async () => {
-		if (isAuthenticated) return;
-		try {
-			const response = await axios.post("http://localhost:8000/auth/login/", {
-				email: "fffff@finki.ukim.mk",
-				password: "testTestTEST123",
-			});
-			const { access, refresh, full_name, user_type } = response.data;
-			login(access, refresh, {
-				full_name,
-				user_type,
-			});
-			navigate("/");
-		} catch (err: unknown) {
-			console.log(err);
-		}
-	};
+	// const testAccountLogin = async () => {
+	// 	if (isAuthenticated) return;
+	// 	try {
+	// 		const response = await axios.post("http://localhost:8000/auth/login/", {
+	// 			email: "fffff@finki.ukim.mk",
+	// 			password: "testTestTEST123",
+	// 		});
+	// 		const { access, refresh, full_name, user_type } = response.data;
+	// 		login(access, refresh, {
+	// 			full_name,
+	// 			user_type,
+	// 		});
+	// 		navigate("/");
+	// 	} catch (err: unknown) {
+	// 		console.log(err);
+	// 	}
+	// };
 
 	return (
@@ -105,5 +104,5 @@
 					{/* <button onClick={testAccountLogin}>quick login</button> */}
 					<Link to="/subjects" className="hover:underline">
-						Предмети
+						Сите предмети
 					</Link>
 					{isAuthenticated ? (
Index: frontend/src/pages/Register.tsx
===================================================================
--- frontend/src/pages/Register.tsx	(revision 6161e93bd3fd599e4b3fbd5febc22f25f7f192f4)
+++ frontend/src/pages/Register.tsx	(revision 388ab1b03b9446398b51f8f4b26d8b8ce7bd0d6b)
@@ -4,4 +4,5 @@
 import { toast } from "react-toastify";
 import PasswordInput from "../components/PasswordInput";
+import { User } from "../context/AuthContext";
 import { useAuth } from "../hooks/useAuth";
 
@@ -49,4 +50,5 @@
 				access: string;
 				refresh: string;
+				user: User;
 			}>("http://localhost:8000/auth/register/", {
 				email: formData.email,
@@ -55,6 +57,6 @@
 				full_name: formData.fullName,
 			});
-			const { access, refresh } = response.data;
-			login(access, refresh);
+			const { access, refresh, user } = response.data;
+			login(access, refresh, user);
 			toast.success("Успешна регистрација!");
 			navigate("/account");
