-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathindex.jsp
More file actions
42 lines (42 loc) · 1.41 KB
/
index.jsp
File metadata and controls
42 lines (42 loc) · 1.41 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
<!DOCTYPE html>
<!-- Coding By CodingNepal - www.codingnepalweb.com -->
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Netflix Login Page | CodingNepal</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<a href="#"><img src="https://github.com/CanisCoder/jenkins-java-project/blob/master/src/netflixlogo.png?raw=true" alt="logo" /></a>
</nav>
<div class="background-image"></div>
<div class="form-wrapper">
<h2>NETFLIX SIGN IN V-3.0</h2>
<form action="#">
<div class="form-control">
<input type="text" required />
<label>Email or Mobile number</label>
</div>
<div class="form-control">
<input type="password" required />
<label>Password</label>
</div>
<button type="submit">WELCOME TO NETFLIX V-7.0</button>
<div class="form-help">
<div class="remember-me">
<input type="checkbox" id="remember-me" />
<label for="remember-me">Remember me</label>
</div>
<a href="#">Need help?</a>
</div>
</form>
<p>New to Netflix? <a href="#">Lets join up now</a></p>
<small>
This page is protected by Google reCAPTCHA to ensure you're not a bot.
<a href="#">Learn more.</a>
</small>
</div>
</body>
</html>