Advertisement
kopyl

Untitled

Apr 29th, 2022
1,275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.72 KB | None | 0 0
  1. <div id="bottom-button-container">
  2.  
  3.     <button @buttonSlider *ngIf="googleAuth.userLoggedIn" routerLink="/notes" class=big-button-primary>
  4.  
  5.         <div class="left-side">
  6.             <icon-notes></icon-notes>
  7.             My notes
  8.         </div>
  9.  
  10.         <icon-arrow-right></icon-arrow-right>
  11.     </button>
  12.  
  13.     <div @buttonSlider id="auth" *ngIf="!googleAuth.userLoggedIn">
  14.  
  15.         <h1>Login or sign up</h1>
  16.  
  17.         <button (click)=googleAuth.authorize() google-sign-in class=big-button-primary>
  18.  
  19.             <div class="left-side">
  20.                 <icon-google></icon-google>
  21.                 By Google
  22.             </div>
  23.  
  24.             <icon-arrow-right></icon-arrow-right>
  25.         </button>
  26.  
  27.     </div>
  28.  
  29. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement