diff --git a/bookwyrm/templates/get_started/layout.html b/bookwyrm/templates/get_started/layout.html
index 0e80a502..63c04289 100644
--- a/bookwyrm/templates/get_started/layout.html
+++ b/bookwyrm/templates/get_started/layout.html
@@ -9,8 +9,12 @@
+
diff --git a/bookwyrm/views/authentication.py b/bookwyrm/views/authentication.py
index a9147556..eef5c79f 100644
--- a/bookwyrm/views/authentication.py
+++ b/bookwyrm/views/authentication.py
@@ -111,7 +111,7 @@ class Register(View):
invite.save()
login(request, user)
- return redirect("/")
+ return redirect("get-started-profile")
@method_decorator(login_required, name="dispatch")