Skip to content

Commit

Permalink
Merge pull request #596 from Son7c/main
Browse files Browse the repository at this point in the history
Return to home button added
  • Loading branch information
YadavAkhileshh authored Oct 30, 2024
2 parents d9a2e2b + cfc91b4 commit ccb532b
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion Login and Signup/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,36 @@
<title> Login & Registration Form </title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="/favicon.png" type="image/png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
</head>

<body>

<div class="home-nav">
<a href="/"><i class="fa-solid fa-arrow-left-long"></i>&nbsp; Return to Home</a>
<style>
.home-nav a{
text-decoration: none;
height: 50px;
width: 250px;
color: white;
font-size: 1.25rem;
position: absolute;
top: 20px;
left: 40px;
background-color: rgba(255,255,255,0.2);
display: flex;
justify-content: center;
align-items: center;
border-radius: 30px;
transition: all 0.4s ease;
}
.home-nav a:hover{
transform: scale(1.02);
background-color:#fff;
color: black;
}
</style>
</div>
<div class="wrapper">
<div class="form-wrapper sign-in">
<form action="/" method = "post">
Expand Down

0 comments on commit ccb532b

Please sign in to comment.