Skip to content

Commit

Permalink
Minor style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CHETHANBABU committed Aug 4, 2021
1 parent 62f1477 commit a71ff54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/app/auth/login/login.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<img src="https://image.ibb.co/n7oTvU/logo_white.png" alt="" />
<h3>Welcome</h3>
<p>Are you a new Employee! Please register.</p>
<button class="w-50" style="border-radius: 50px;" (click)="selectNavigation('/auth/register')">Register</button>
<button class="w-50 btn" style="border-radius: 50px;" (click)="selectNavigation('/auth/register')">Register</button>
</div>
<div class="col-md-9 register-right">
<form #loginForm="ngForm">
Expand Down
2 changes: 1 addition & 1 deletion client/src/app/auth/register/register.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<img src="https://image.ibb.co/n7oTvU/logo_white.png" alt="" />
<h3>Welcome</h3>
<p>Please login if you have an Employee account</p>
<button class="w-50" style="border-radius: 50px;" (click)="selectNavigation('/auth/login')">Login</button>
<button class="w-50 btn" style="border-radius: 50px;" (click)="selectNavigation('/auth/login')">Login</button>
</div>
<div class="col-md-9 register-right">
<form #registerForm="ngForm">
Expand Down

0 comments on commit a71ff54

Please sign in to comment.