fix small ui bug

This commit is contained in:
Igor Hrenowitsch Propisnov 2024-06-26 19:21:23 +02:00
parent 7726310882
commit 03df5f585b
3 changed files with 5 additions and 3 deletions

View File

@ -11,8 +11,8 @@
<p class="pt-3 pb-6">
Your email {{ email() }} has been successfully verified. will
<br />
You be automatically redirected in to the login page to access
the application shortly.
You will be automatically redirected in to the login page to
access the application shortly.
</p>
<button
(click)="navigateToWelcomeScreen()"

View File

@ -63,7 +63,7 @@
<button
(click)="toggleAction('signup')"
class="btn btn-primary btn-outline no-animation">
Register
New here - Register now!
</button>
}
}

View File

@ -125,6 +125,8 @@ export class RegisterRootComponent implements OnInit {
this.displaySkeleton.set(false);
},
});
} else {
this.displaySkeleton.set(false);
}
}