Redirect to the account registration page
@ -40,7 +40,10 @@ export class AuthGuard implements CanActivate {
.get()
.pipe(
catchError(() => {
if (AuthGuard.PUBLIC_PAGE_ROUTES.includes(state.url)) {
if (route.queryParams?.utm_source) {
this.router.navigate(['/register']);
resolve(false);
} else if (AuthGuard.PUBLIC_PAGE_ROUTES.includes(state.url)) {
resolve(true);
return EMPTY;
} else if (state.url !== '/start') {
@ -2,7 +2,7 @@
<div class="row">
<div class="col">
<h3 class="d-flex justify-content-center mb-3 text-center" i18n>
Create your Ghostfolio account
Create your Account
</h3>
<mat-card class="mb-4">
<mat-card-content class="text-center">
@ -1,5 +1,6 @@
<div class="container">
<div
class="align-items-center d-flex flex-column justify-content-center mb-4 w-100"
>
@ -31,4 +32,5 @@
</button>
</div>