auth back

This commit is contained in:
jleroy
2025-03-11 12:05:07 +01:00
parent 32ee0904f1
commit ca82df1b7e
14 changed files with 388 additions and 61 deletions

View File

@@ -1,4 +1,5 @@
import { Component } from '@angular/core';
import {Component, OnInit} from '@angular/core';
import {Title} from '@angular/platform-browser';
@Component({
selector: 'app-home',
@@ -6,6 +7,13 @@ import { Component } from '@angular/core';
templateUrl: './home.component.html',
styleUrl: './home.component.css'
})
export class HomeComponent {
export class HomeComponent implements OnInit {
constructor(private title: Title) {
}
ngOnInit(): void {
this.title.setTitle('Accueil - YouVideo');
}
}