27 lines
685 B
TypeScript
27 lines
685 B
TypeScript
/**
|
|
* Auth Layout Component
|
|
* Clean layout for authentication pages (login, register, forgot-password)
|
|
*
|
|
* @author David Valera Melendez <david@valera-melendez.de>
|
|
* @created 2025-08-08
|
|
* @location Made in Germany 🇩🇪
|
|
*/
|
|
|
|
import { Component } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { RouterOutlet } from '@angular/router';
|
|
|
|
@Component({
|
|
selector: 'app-auth-layout',
|
|
standalone: true,
|
|
imports: [
|
|
CommonModule,
|
|
RouterOutlet
|
|
],
|
|
templateUrl: './auth-layout.component.html',
|
|
styleUrls: ['./auth-layout.component.css']
|
|
})
|
|
export class AuthLayoutComponent {
|
|
// Simple layout component for auth pages - no logic needed
|
|
}
|