Skip to content

Instantly share code, notes, and snippets.

@invisiblegeek1
Last active November 17, 2021 08:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save invisiblegeek1/48881ef6340e753da630db2c7c5a95dc to your computer and use it in GitHub Desktop.
Save invisiblegeek1/48881ef6340e753da630db2c7c5a95dc to your computer and use it in GitHub Desktop.
<div class="Sign-up-page-container">
<div class="Greeting-quote-container">
Hello!
</div>
<form action="" class="Sign-up-form" #SignUpForm="ngForm">
<div class="User-details-input-container">
<input type="text" class="User-Name" placeholder="Name" name=name [(ngModel)]=UserSignUpDetails.name>
<input type="text" class="User-email-mobile" placeholder="Email or mobile" name=email
[(ngModel)]=UserSignUpDetails.email>
<input type="text" class="User-password" placeholder="Password" name=password
[(ngModel)]=UserSignUpDetails.password>
</div>
<div class="User-action-btn-container">
<button class="Sign-Up-btn" (click)=writeForm()> Join now</button>
</div>
</form>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment