mirror of
https://github.com/a-mayb3/KanbanCloneAngular.git
synced 2026-03-21 18:05:38 +01:00
Added user registration
This commit is contained in:
parent
1c19bb4e7d
commit
0c8f11a463
8 changed files with 291 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import { Component, inject, signal, OnInit } from '@angular/core';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { Router } from '@angular/router';
|
||||
import { Router, RouterLink } from '@angular/router';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { AuthService } from '../../services/auth.service';
|
||||
import { catchError, of, throwError } from 'rxjs';
|
||||
|
|
@ -8,7 +8,7 @@ import { catchError, of, throwError } from 'rxjs';
|
|||
@Component({
|
||||
selector: 'app-login',
|
||||
standalone: true,
|
||||
imports: [FormsModule, CommonModule],
|
||||
imports: [FormsModule, CommonModule, RouterLink],
|
||||
templateUrl: './login.component.html',
|
||||
styleUrl: './login.component.css',
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue