Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added signup page in Netflix clone #1189

Merged
merged 1 commit into from
Aug 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Projects/Netflix_clone_Project/sigin.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h1>Sign In</h1>
</div>
</div>
<div class="signUp">
New to Netflix? <a href="#" class="sLink">Sign up now</a>.
New to Netflix? <a href="signup.html" class="sLink">Sign up now</a>.
</div>
<div class="google cLink ">
This page is protected by Google
Expand Down
98 changes: 98 additions & 0 deletions Projects/Netflix_clone_Project/signup.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #141414;
color: white;
}

.background {
position: relative;
height: 100vh;
background: url('image-bg.png') no-repeat center center/cover;
}

.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
}

.header {
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 20px;
display: flex;
justify-content: center;
}

.logo {
max-width: 150px;
}

.signup-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
width: 90%;
max-width: 600px;
}

.signup-form h1 {
font-size: 2.5em;
margin-bottom: 20px;
}

.signup-form h2 {
font-size: 1.5em;
margin-bottom: 20px;
}

.signup-form h3 {
font-size: 1.2em;
margin-bottom: 20px;
}

.signup-form input {
width: 100%;
padding: 15px;
margin: 10px 0;
border: none;
border-radius: 5px;
font-size: 16px;
}

.signup-form button {
width: 100%;
padding: 15px;
margin-top: 10px;
border: none;
border-radius: 5px;
background-color: #e50914;
color: white;
font-size: 18px;
cursor: pointer;
}

.signup-form button:hover {
background-color: #f40612;
}

.signin-link {
margin-top: 20px;
}

.signin-link a {
color: #e50914;
text-decoration: none;
}

.signin-link a:hover {
text-decoration: underline;
}
29 changes: 29 additions & 0 deletions Projects/Netflix_clone_Project/signup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Netflix Signup</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<div class="background">
<div class="overlay"></div>
<div class="header">
<img src="Netflix-logo.png" alt="Netflix Logo" class="logo">
</div>
<div class="signup-container">
<div class="signup-form">
<h1>Unlimited movies, TV shows, and more.</h1>
<h2>Watch anywhere. Cancel anytime.</h2>
<h3>Ready to watch? Enter your email to create or restart your membership.</h3>
<form action="#" method="post">
<input type="email" name="email" placeholder="Email address" required>
<button type="submit">Get Started</button>
</form>
<p class="signin-link">Already have an account? <a href="sigin.html">Sign In now.</a></p>
</div>
</div>
</div>
</body>
</html>