komponents erstellen
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
/* src\app\features\auth\_auth-common.css */
|
||||
/* =================================================================================
|
||||
* GEMEINSAME STILE FÜR DAS AUTH-FEATURE
|
||||
* ================================================================================= */
|
||||
|
||||
@@ -3,7 +3,7 @@ import { CommonModule } from '@angular/common';
|
||||
import { ReactiveFormsModule, FormBuilder, Validators, FormGroup } from '@angular/forms';
|
||||
import { RouterLink } from '@angular/router';
|
||||
// Optional: Ein Custom Validator für den Passwort-Vergleich
|
||||
import { passwordMatchValidator } from '../../../../core/validators/password-match.validator';
|
||||
import { passwordMatchValidator } from '../../../../shared/validators/password-match.validator';
|
||||
|
||||
@Component({
|
||||
selector: 'app-register',
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* src\app\features\auth\components\register\register.component.css */
|
||||
/* src\app\features\auth\components\reset-password\reset-password.component.css */
|
||||
@import '../../_auth-common.css';
|
||||
|
||||
/* Stile NUR für die Passwort-zurücksetzen-Seite */
|
||||
|
||||
@@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { ReactiveFormsModule, FormBuilder, Validators, FormGroup } from '@angular/forms';
|
||||
import { Router, ActivatedRoute } from '@angular/router';
|
||||
import { passwordMatchValidator } from '../../../../core/validators/password-match.validator';
|
||||
import { passwordMatchValidator } from '../../../../shared/validators/password-match.validator';
|
||||
|
||||
@Component({
|
||||
selector: 'app-reset-password',
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
/* src\app\features\demo\components\demo\demo.component.css */
|
||||
@@ -2,7 +2,7 @@ import { Component, Renderer2, OnInit } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { trigger, transition, style, animate } from '@angular/animations';
|
||||
|
||||
import { SnackbarService } from '../../../../shared/snackbar/services/snackbar.service';
|
||||
import { SnackbarService } from '../../../../shared/services/snackbar.service';
|
||||
|
||||
@Component({
|
||||
selector: 'app-demo',
|
||||
|
||||
Reference in New Issue
Block a user