-
-
- setProfile({ ...profile, phone: e.target.value })
- }
- placeholder="070-123 45 67"
+ placeholder="Ditt företag eller e-postadress"
/>
+
+ Inloggad som: {user?.email}
+
diff --git a/src/pages/AccountConfirmation.tsx b/src/pages/AccountConfirmation.tsx
new file mode 100644
index 0000000..d7bf9a0
--- /dev/null
+++ b/src/pages/AccountConfirmation.tsx
@@ -0,0 +1,50 @@
+import { useNavigate } from "react-router-dom";
+import { Button } from "@/components/ui/button";
+import { CheckCircle } from "lucide-react";
+import Header from "@/components/Header";
+
+const AccountConfirmation = () => {
+ const navigate = useNavigate();
+
+ return (
+
+
+
+
+
+
+
+
+
+
+ Uppgifter sparade!
+
+
+
+ Dina kontuppgifter har sparats. Du kan nu beställa abonnemang med dessa uppgifter.
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default AccountConfirmation;
diff --git a/supabase/migrations/20260127231459_1e04b3dd-4432-4067-a6d6-a5453eb26b53.sql b/supabase/migrations/20260127231459_1e04b3dd-4432-4067-a6d6-a5453eb26b53.sql
new file mode 100644
index 0000000..ee8720c
--- /dev/null
+++ b/supabase/migrations/20260127231459_1e04b3dd-4432-4067-a6d6-a5453eb26b53.sql
@@ -0,0 +1,3 @@
+-- Add company_name column to profiles table
+ALTER TABLE public.profiles
+ADD COLUMN company_name text;
\ No newline at end of file