Skip to content

Commit

Permalink
Merge pull request #122 from rogershi-dev/feature/registration-auth
Browse files Browse the repository at this point in the history
Added light background color for login page and register page.
  • Loading branch information
rogershi-dev authored Jul 15, 2024
2 parents 9e3a4f1 + 84553e7 commit 05c07c0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion server/views/login.pug
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,9 @@ block content

p.mt-3
| If you haven't created an account yet,
a(href='/users/register' class='text-dark fw-bold') create one
a(href='/users/register' class='text-dark fw-bold') create one

style.
body {
background: linear-gradient(to right, #f8f9fa, #e9ecef);
}
5 changes: 5 additions & 0 deletions server/views/register.pug
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,8 @@ block content
p.mt-3
| If you've already done the authorization,
a(href='/users/login' class='text-dark fw-bold') login now

style.
body {
background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

0 comments on commit 05c07c0

Please sign in to comment.