module deconnexion

This commit is contained in:
Romain Verger 2022-03-02 10:25:30 +01:00
parent 30f70296ba
commit 547f6aee58
8 changed files with 31 additions and 13 deletions

View file

@ -1,4 +1,4 @@
<footer class="d-flex">
<footer *ngIf="route.url != '/signin'" class="d-flex">
<div class = "logo d-inline-flex align-items-center">
<img src="../../assets/Logo_footer.png">

View file

@ -1,4 +1,5 @@
import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'app-footer',
@ -7,7 +8,7 @@ import { Component, OnInit } from '@angular/core';
})
export class FooterComponent implements OnInit {
constructor() { }
constructor(public route : Router) { }
ngOnInit(): void {
}