diff --git a/web/src/components/login-modal.tsx b/web/src/components/login-modal.tsx index 4706a5fc..cdb0080a 100644 --- a/web/src/components/login-modal.tsx +++ b/web/src/components/login-modal.tsx @@ -8,6 +8,7 @@ import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } f import { Input } from "@/components/ui/input" import { Label } from "@/components/ui/label" import { Separator } from "@/components/ui/separator" +import { BorderBeam } from "@/components/ui/border-beam" import { pb } from "@/lib/pb" interface LoginModalProps { @@ -86,7 +87,7 @@ export function LoginModal({ open, onOpenChange }: LoginModalProps) { return ( - + {isRegister ? "Create account" : "Sign in"} @@ -248,6 +249,18 @@ export function LoginModal({ open, onOpenChange }: LoginModalProps) { + + )