-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #664 from Riyachauhan11/main
adding translator on each pg & fix route of signup button
- Loading branch information
Showing
10 changed files
with
1,711 additions
and
1,333 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<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> 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="gtranslate_wrapper"></div> | ||
<script> | ||
window.gtranslateSettings = { | ||
default_language: "en", | ||
native_language_names: true, | ||
languages: ["en", "fr", "de", "it", "es", "pl", "hi"], | ||
wrapper_selector: ".gtranslate_wrapper", | ||
alt_flags: { en: "usa" }, | ||
}; | ||
</script> | ||
<script | ||
src="https://cdn.gtranslate.net/widgets/latest/float.js" | ||
defer | ||
></script> | ||
<div class="wrapper"> | ||
<div class="form-wrapper sign-in"> | ||
<form action="/" method="post"> | ||
<h2>Login</h2> | ||
<div class="input-group"> | ||
<input type="text" required /> | ||
<label for="">Username</label> | ||
</div> | ||
<div class="input-group"> | ||
<input type="password" required /> | ||
<label for="">Password</label> | ||
</div> | ||
<div class="remember"> | ||
<label><input type="checkbox" /> Remember me</label> | ||
</div> | ||
<button type="submit">Login</button> | ||
<div class="signUp-link"> | ||
<p> | ||
Don't have an account? | ||
<a href="#" class="signUpBtn-link">Sign Up</a> | ||
</p> | ||
</div> | ||
</form> | ||
</div> | ||
|
||
<div class="form-wrapper sign-up"> | ||
<form action="/" method="post"> | ||
<h2>Sign Up</h2> | ||
<div class="input-group"> | ||
<input type="text" required /> | ||
<label for="">Username</label> | ||
</div> | ||
<div class="input-group"> | ||
<input type="email" required /> | ||
<label for="">Email</label> | ||
</div> | ||
<div class="input-group"> | ||
<input type="password" required /> | ||
<label for="">Password</label> | ||
</div> | ||
<div class="remember"> | ||
<label | ||
><input type="checkbox" /> I agree to the terms & | ||
conditions</label | ||
> | ||
</div> | ||
<button type="submit">Sign Up</button> | ||
<div class="signUp-link"> | ||
<p> | ||
Already have an account? | ||
<a href="#" class="signInBtn-link">Sign In</a> | ||
</p> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
<script src="script.js"></script> | ||
</body> | ||
</html> |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.