-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Form Netflix</title>
<link rel="stylesheet" href="style2.css" />
</head>
<body>
<nav>
<a href="#"><img src="logo.svg" alt="Logo" /></a>
</nav>
<div class="form-wrapper">
<h2>Sign In</h2>
<form action="#">
<div class="form-control">
<input type="text" placeholder="Email Atau Nomer Telephone" minlength="12" maxlength="25" />
</div>
<br />
<div class="form-control">
<input type="password" placeholder="Password Anda" minlength="10" maxlength="20" />
</div>
<button type="submit">Sign In</button>
<div class="form-help">
<div class="remember-me">
<input type="checkbox" required />
<label for="remember-me">Remember me</label>
</div>
<a href="#">Butuh bantuan?</a>
</div>
</form>
<p>Belum Buat Akun? <a href="#">Buat Sekarang</a></p>
<small>
This page is protected by google reCAPTCHA to ensure you're not a bot
<a href="#">Baca Selanjutnya</a>
</small>
</div>
</body>
</html>