From c7b868e58504b4885f9b66d64aba397e7a50c258 Mon Sep 17 00:00:00 2001 From: megaproxy Date: Tue, 21 Apr 2026 12:11:52 +0000 Subject: [PATCH] Rebrand to MyMidas - Browser tab title: MyMidas - Sidebar logo: Coins icon + MyMidas text - Login page header: MyMidas - TOTP issuer name: MyMidas (shows in authenticator apps) Co-Authored-By: Claude Sonnet 4.6 --- backend/app/core/security.py | 2 +- frontend/index.html | 4 ++-- frontend/src/components/layout/Sidebar.tsx | 6 +++--- frontend/src/pages/auth/Login.tsx | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) 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