Skip to content

Commit

Permalink
Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ask1811 committed Mar 19, 2023
1 parent f60be0c commit 94e956d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions frontend/src/pages/Login/Login.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@
position: relative;
width: 380px;
padding: 80px 40px 40px;
background: black;
background: rgb(129, 2, 2);
border-radius: 10px;
color: #ffff;
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
box-shadow: 0 15px 25px rgba(124, 2, 2, 0.5);
border-color: #fff;
border-width: 10px;
margin-top: 20px;
}
.form::before {
content: "";
Expand All @@ -21,7 +24,7 @@
left: 0;
width: 50%;
height: 100%;
background: rgba(255, 255, 255, 0.08);
background: rgba(14, 12, 12, 0.08);
transform: skewX(-26deg);
transform-origin: bottom left;
border-radius: 10px;
Expand Down Expand Up @@ -87,7 +90,7 @@
}

.sig{
color: red;
color: white;
text-decoration: none;
}

Expand Down Expand Up @@ -123,7 +126,7 @@
color: inherit;
}
.motham{
background-color: violet;
background-color: black;
max-height: 850px;
}
.logbtn{
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Login/Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const Login = () => {
/>
<label for="loginPassword">Password</label>
</div>
<input type="submit" value="Sign In" class="submit-btn" onClick={(e) => {
<input type="submit" value="Log In" class="submit-btn" onClick={(e) => {

e.preventDefault();
console.log(logdata)
Expand Down

0 comments on commit 94e956d

Please sign in to comment.