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 9f0a467dcdff3a50130541eee01e847a7b35f9db..4341fc406d7aae59be2324b0df6b34f7a3a1699c 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