-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (43 loc) · 1.3 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Netflix Login</title>
<link rel="stylesheet" href="home.css">
</head>
<body>
<div class="login">
<h1 class="login-title">Login</h1>
<p id="email-text">Email: [email protected]</p>
<div class="login-group">
<input
class="login-group-input"
type="text"
name="loginUser"
id="email"
required="true"/>
</div>
<p id="possword">Possword: 123456789</p>
<div class="login-group">
<input
class="login-group-input"
type="password"
name="loginPassword"
id="password"
required="true"/>
</div>
<input type="submit" value="Login" class="login-sign-in" onclick="auth()">
<div class="login__secondary-cta"><a class="login__secondary-cta__text" href="#">Forget</a>
<a class="login__secondary-cta__text login__secondary-cta__text--need-help" href="#">Need help ?</a>
</div>
<footer>
<p>© 1997-2023 Netflix, Inc.</p>
<a href="https://www.satyaidk.live">
<p>satyaidk 2023</p>
</a>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>