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 <noreply@anthropic.com>
This commit is contained in:
megaproxy 2026-04-21 12:11:52 +00:00
parent 61a7884ee5
commit c7b868e585
4 changed files with 9 additions and 9 deletions

View file

@ -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"
)