-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b42c58e
commit 40dd640
Showing
4 changed files
with
139 additions
and
2 deletions.
There are no files selected for viewing
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
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,31 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Netflix - Watch TV Shows & movies</title> | ||
<link rel="stylesheet" href="style.css" class="css"> | ||
<link rel="stylesheet" href="assests/img/logo.png" class="icon"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<form action="#" method="POST" class="login-form"> | ||
<h2>Login</h2> | ||
<div class="input-group"> | ||
<label for="username">Username or Email</label> | ||
<input type="text" id="username" name="username" required> | ||
</div> | ||
<div class="input-group"> | ||
<label for="password">Password</label> | ||
<input type="password" id="password" name="password" required> | ||
</div> | ||
<button type="submit" class="buttonlogin"><a href="index.html" id="text-dec">Login</a></button> | ||
<div class="footerlogin"> | ||
<a href="#">Forgot Password?</a> | ||
<span>Don't have an account? <a href="sign.html">Sign Up</a></span> | ||
<a href="index.html">Return to home</a> | ||
</div> | ||
</form> | ||
</div> | ||
</body> | ||
</html> |
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,35 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Netflix - Watch TV Shows & movies</title> | ||
<link rel="stylesheet" href="style.css" class="css"> | ||
<link rel="stylesheet" href="assests/img/logo.png" class="icon"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<form action="#" method="POST" class="login-form"> | ||
<h2>Sign Up</h2> | ||
<div class="input-group"> | ||
<label for="text">Full Name</label> | ||
<input type="name" id="name" name="text" required> | ||
</div> | ||
<div class="input-group"> | ||
<label for="username">Username or Email</label> | ||
<input type="text" id="username" name="username" required> | ||
</div> | ||
<div class="input-group"> | ||
<label for="password">Password</label> | ||
<input type="password" id="password" name="password" required> | ||
</div> | ||
<button type="submit" class="buttonlogin"><a href="index.html" id="text-dec">Sign Up</a></button> | ||
<div class="footerlogin"> | ||
<a href="#">Forgot Password?</a> | ||
<span>Already have an account? <a href="login.html">Login</a></span> | ||
<a href="index.html">Return to home</a> | ||
</div> | ||
</form> | ||
</div> | ||
</body> | ||
</html> |
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