diff --git a/backend/app/core/security.py b/backend/app/core/security.py
index 0c0335e..de56898 100644
--- a/backend/app/core/security.py
+++ b/backend/app/core/security.py
@@ -156,7 +156,7 @@ def generate_totp_secret() -> str:
def get_totp_uri(secret: str, email: str) -> str:
return pyotp.totp.TOTP(secret).provisioning_uri(
- name=email, issuer_name="Finance Tracker"
+ name=email, issuer_name="MyMidas"
)
diff --git a/frontend/index.html b/frontend/index.html
index a3ee9d5..4f45c1b 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -3,8 +3,8 @@
- Finance Tracker
-
+ MyMidas
+
diff --git a/frontend/src/components/layout/Sidebar.tsx b/frontend/src/components/layout/Sidebar.tsx
index f70da96..e890e82 100644
--- a/frontend/src/components/layout/Sidebar.tsx
+++ b/frontend/src/components/layout/Sidebar.tsx
@@ -12,7 +12,7 @@ import {
Settings,
ChevronLeft,
ChevronRight,
- DollarSign,
+ Coins,
} from "lucide-react";
const navItems = [
@@ -39,9 +39,9 @@ export default function Sidebar() {
>
{/* Logo */}
-
+
{sidebarOpen && (
- Finance
+ MyMidas
)}
diff --git a/frontend/src/pages/auth/Login.tsx b/frontend/src/pages/auth/Login.tsx
index 101a5c0..036b89b 100644
--- a/frontend/src/pages/auth/Login.tsx
+++ b/frontend/src/pages/auth/Login.tsx
@@ -2,7 +2,7 @@ import { useState } from "react";
import { useNavigate } from "react-router-dom";
import { login, loginTotp, getMe } from "@/api/auth";
import { useAuthStore } from "@/store/authStore";
-import { DollarSign, Eye, EyeOff, Loader2, ShieldCheck } from "lucide-react";
+import { Coins, Eye, EyeOff, Loader2, ShieldCheck } from "lucide-react";
export default function LoginPage() {
const navigate = useNavigate();
@@ -78,9 +78,9 @@ export default function LoginPage() {
-
+
-
Finance Tracker
+
MyMidas