Skip to content

Commit

Permalink
Add Back Button
Browse files Browse the repository at this point in the history
  • Loading branch information
SrinivasDevolper committed Jun 27, 2024
1 parent f4dfabc commit 56852b0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Css-files/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@
width: 80%;
}

.back-button{
display: none;
}

@media screen and (width <= 600px) {
.card{
width: 95%;
Expand All @@ -105,6 +109,9 @@
padding-bottom: 4rem;
padding-top: 0;
}
.back-button{
display: block;
}
}

#rememberCheckbox{
Expand Down
7 changes: 7 additions & 0 deletions Css-files/signup.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@
width: 80%;
}

.back-button{
display: none;
}

@media screen and (width <=600px) {
.card {
width: 95%;
Expand All @@ -103,6 +107,9 @@
padding-bottom: 4rem;
padding-top: 0;
}
.back-button{
display: block;
}
}

@media screen and (width >= 2000px)
Expand Down
1 change: 1 addition & 0 deletions Html-files/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
</nav>

<div class="head_container">
<button style="background:transparent;border: none; margin-left: 20px; padding-top: 10px;" class="back-button"><a href="../index.html"><i class="fa-solid fa-arrow-left" style="color: #ffffff; font-size: 18px; cursor: pointer;"></a></i></button>
<div class="mainhead">
<h1 class="m-0">LOGIN</h1>
</div>
Expand Down
1 change: 1 addition & 0 deletions Html-files/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
</nav>

<div class="head_container">
<button style="background:transparent;border: none; margin-left: 20px; padding-top: 10px;" class="back-button"><a href="../index.html"><i class="fa-solid fa-arrow-left" style="color: #ffffff; font-size: 18px; cursor: pointer;"></a></i></button>
<div class="mainhead">
<h1 class="m-0">SIGN UP</h1>
</div>
Expand Down

0 comments on commit 56852b0

Please sign in to comment.