This commit is contained in:
Igor Hrenowitsch Propisnov 2024-07-18 22:52:49 +02:00
parent 1786cc3077
commit 635b30d33b
4 changed files with 5 additions and 5 deletions

View File

@ -6,8 +6,8 @@ const simpleLayoutRoutes: Routes = [
{
path: '',
loadComponent: () =>
import('./pages/register-root/register-root.component').then(
(m) => m.RegisterRootComponent
import('./pages/welcome-root/welcome-root.component').then(
(m) => m.WelcomeRootComponent
),
},
{

View File

@ -67,11 +67,11 @@ type AuthAction = 'signin' | 'signup';
new ApiConfiguration({ withCredentials: true }),
},
],
templateUrl: './register-root.component.html',
styleUrl: './register-root.component.scss',
templateUrl: './welcome-root.component.html',
styleUrl: './welcome-root.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class RegisterRootComponent implements OnInit {
export class WelcomeRootComponent implements OnInit {
public dialogBackgroundStyle: { 'background-image': string } | null = null;
public leftBackgroundStyle: { 'background-image': string } | null = null;
public rightBackgroundStyle: { 'background-image': string } | null = null;