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: '', path: '',
loadComponent: () => loadComponent: () =>
import('./pages/register-root/register-root.component').then( import('./pages/welcome-root/welcome-root.component').then(
(m) => m.RegisterRootComponent (m) => m.WelcomeRootComponent
), ),
}, },
{ {

View File

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