-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (45 loc) · 1.7 KB
/
Copy pathindex.html
File metadata and controls
50 lines (45 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>NETFLIX</h1>
<div class="login-form">
<h2>Sign In</h2>
<form action="submit_url">
<!-- Email Input -->
<div class="input-group">
<input type="text" id="email" name="email" required>
<label for="email">Email or phone number</label>
</div>
<!-- Password Input -->
<div class="input-group">
<input type="password" id="password" name="password" required>
<label for="password">Password</label>
</div>
<!-- Remember me & Help Links -->
<div class="help-section">
<div class="remember-me">
<input type="checkbox" id="remember-me" name="remember-me">
<label for="remember-me"></label>
</div>
<a href="#" class="help-link">Need help?</a>
</div>
<!-- Submit Button -->
<button type="submit">Sign In</button>
</form>
<!-- Sign Up Section -->
<p>New to Netflix? <a href="#">Sign up now</a></p>
<!-- Footer Small Print -->
<small>
This page is protected by Google reCAPTCHA to ensure you're not a bot. <a href="#">Learn more.</a>
</small>
</div>
</div>
</body>
</html>