From e0ad32447a57082144a6bfe69cc60dfbc36973cb Mon Sep 17 00:00:00 2001 From: Chad Curtis Date: Tue, 8 Jul 2025 06:24:43 +0000 Subject: [PATCH] pull in signup button too --- src/components/auth/LoginDialog.tsx | 35 ++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 11 deletions(-) diff --git a/src/components/auth/LoginDialog.tsx b/src/components/auth/LoginDialog.tsx index 846f951..7c437e7 100644 --- a/src/components/auth/LoginDialog.tsx +++ b/src/components/auth/LoginDialog.tsx @@ -48,7 +48,7 @@ const LoginDialog: React.FC = ({ isOpen, onClose, onLogin, onS const handleKeyLogin = () => { if (!nsec.trim()) return; setIsLoading(true); - + try { login.nsec(nsec); onLogin(); @@ -63,7 +63,7 @@ const LoginDialog: React.FC = ({ isOpen, onClose, onLogin, onS const handleBunkerLogin = () => { if (!bunkerUri.trim() || !bunkerUri.startsWith('bunker://')) return; setIsLoading(true); - + try { login.bunker(bunkerUri); onLogin(); @@ -199,17 +199,30 @@ const LoginDialog: React.FC = ({ isOpen, onClose, onLogin, onS -
-

- Don't have an account?{' '} - -

-
+ Create an account + + + )}