@SudhuCodes — A project contributor on SudhuCodes platform.
HTML & CSS — This project belongs to the html & css category.
6/5/2025 — Uploaded to the SudhuCodes project library.
Download free project assets built using html & css. This open-source project is part of the SudhuCodes initiative to support developers and learners.
1<!DOCTYPE html>2<!-- Coding By SudhuCodes - www.sudhucodes.com -->3<html lang="en">45<head>6 <meta charset="UTF-8">7 <meta name="viewport" content="width=device-width, initial-scale=1.0">8 <title>Netflix Login Page - SudhuCodes</title>9 <link rel="stylesheet" href="style.css">10</head>1112<body>13 <nav>14 <a href="#"><img src="images/logo.svg" alt="logo"></a>15 </nav>16 <div class="form-wrapper">17 <h2>Sign In</h2>18 <form action="#">19 <div class="form-control">20 <input type="text" required>21 <label>Email or phone number</label>22 </div>23 <div class="form-control">24 <input type="password" required>25 <label>Password</label>26 </div>27 <button type="submit">Sign In</button>28 <div class="form-help">29 <div class="remember-me">30 <input type="checkbox" id="remember-me">31 <label for="remember-me">Remember me</label>32 </div>33 <a href="#">Need help?</a>34 </div>35 </form>36 <p>New to Netflix? <a href="#">Sign up now</a></p>37 <small>38 This page is protected by Google reCAPTCHA to ensure you're not a bot.39 <a href="#">Learn more.</a>40 </small>41 </div>42</body>4344</html>
You're free to use this code for your personal or educational projects. If you use it publicly, consider giving credit to @SudhuCodes.
Want more beginner-friendly and open-source projects like this one? Browse the full library on the SudhuCodes homepage.
Have suggestions or improvements? Contact us or contribute on GitHub.