création des 3 pages de profil

This commit is contained in:
MiharyR 2021-11-12 09:47:14 +01:00
parent ef5dd96747
commit 89e174a28d
25 changed files with 811 additions and 102 deletions

View file

@ -1,5 +1,6 @@
import { Component, OnInit } from '@angular/core';
import {ThemeService} from "../../utils/services/theme/theme.service";
import { Component } from '@angular/core';
@Component({
selector: 'app-navbar-admin',
@ -8,11 +9,9 @@ import {ThemeService} from "../../utils/services/theme/theme.service";
})
export class NavbarAdminComponent
{
urlImage: string = "" ;
urlImage: string = "https://www.reference-gaming.com/assets/media/product/41195/figurine-pop-duck-tales-n-309-loulou.jpg?format=product-cover-large&k=1519639530" ;
constructor( public themeService: ThemeService ) { }
constructor() { }
onDeconnexion(): void {
}
onDeconnexion(): void {}
}