Last active
October 28, 2021 14:44
-
-
Save NyaGarcia/aa0437630462e5afaf2da4e1fa0bd124 to your computer and use it in GitHub Desktop.
Adding button to navigate register page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="background"> | |
<div class="login-container"> | |
<div class="text-container"> | |
<h1>Hey Stranger</h1> | |
<p> | |
Want to create an awesome account to access this awesome app? Go ahead | |
and click the button below! | |
</p> | |
<button mat-button routerLink="/register">Sign up</button> | |
</div> | |
<div class="form-container"> | |
<h1>Welcome to NgBytes Login</h1> | |
<h5>Sign in with your email</h5> | |
<ngbytes-login-form (formData)="login($event)"></ngbytes-login-form> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment