From 98662ca69ed6ab95c26a45b93a61a70e58bad61c Mon Sep 17 00:00:00 2001 From: D3B1RUM4N <elies1.mek03@gmail.com> Date: Fri, 6 Dec 2024 03:50:47 +0100 Subject: [PATCH] fix: fix deleted divs --- .../profile-info/profile-info.component.html | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/app/modules/profile/profile-info/profile-info.component.html b/src/app/modules/profile/profile-info/profile-info.component.html index 9f0a467..4341fc4 100644 --- a/src/app/modules/profile/profile-info/profile-info.component.html +++ b/src/app/modules/profile/profile-info/profile-info.component.html @@ -6,22 +6,21 @@ <div class="container"> <div class="grid-profile"> <div class="profile_info"> - <img - src="https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png" - alt="profile picture" - /> + <img src="https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png" + alt="profile picture" /> <h3>User Name</h3> </div> <hr /> <div class="profile_stats"> - <img - src="https://img.uxcel.com/tags/key-performance-indicator-kpi-1698250709411-2x.jpg" - alt="stats" - /> + <img src="https://img.uxcel.com/tags/key-performance-indicator-kpi-1698250709411-2x.jpg" + alt="stats" /> </div> </div> </div> - <app-sign *ngIf="!isLogged"></app-sign> + <h3 *ngIf="!isLogged">Not Logged in</h3> + <div *ngIf="!isLogged" class="grid"> + <app-sign *ngIf="!isLogged"></app-sign> + </div> <div *ngIf="isLogged"> <h3>Your quizzes</h3> <div class="grid"> @@ -42,4 +41,4 @@ </div> </div> </div> -</div> +</div> \ No newline at end of file -- GitLab