RLH-12 | Implement username changing

This commit is contained in:
2024-11-04 11:25:19 +01:00
parent c4e8e7483a
commit 1bb4d1d134
19 changed files with 1318 additions and 37 deletions

View File

@@ -1,4 +1,4 @@
import { Component } from '@angular/core';
import { Component, OnInit } from '@angular/core';
import {LoginComponent} from "../../login/login.component";
import {NgIf} from "@angular/common";
import {RegisterComponent} from "../../register/register.component";
@@ -15,7 +15,7 @@ import {AuthService} from "../../../services/auth.service";
templateUrl: './auth-form.component.html',
styleUrl: './auth-form.component.scss'
})
export class AuthFormComponent {
export class AuthFormComponent implements OnInit {
constructor(private authService: AuthService) {
}