-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
57 lines (49 loc) · 3.12 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
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html lang="pt-br">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="images/netflix_logo_icon_170919.png" type="image/x-icon">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>Netflix</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="login-top">
<img src="./images/logo.png" alt="">
</div>
<div class="d-flex justify-content-center align-items-center" style="width: 100vw;">
<section class="login-box">
<h2 class="text-white">Entrar</h2>
<form class="mt-4">
<div class="mb-3 bg-white rounded px-2" >
<label for="exampleInputEmail1" class="form-label small-text">Email ou número de telefone</label>
<input type="email" class="form-control border-0 p-0" id="exampleInputEmail1" aria-describedby="emailHelp">
</div>
<div class="mb-3 bg-white rounded px-2">
<label for="exampleInputPassword1" class="form-label small-text">Senha</label>
<input type="password" class="form-control border-0 p-0" id="exampleInputPassword1">
</div>
<a href="landing.html" type="submit" class="btn btn-danger mt-3" style="width: 100%;">Entrar</a>
<div class="mb-3 mt-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label text-white small-text" for="exampleCheck1">Lembre-se de mim</label>
</div>
<div class="mt-3 ">
<p class="m-0 text-white"> <span style="color: rgba(212, 212, 212, 0.75);">Novo por aqui?</span> Assine agora</p>
<p class="m-0 small-text text-white mt-2"> <span style="color: rgba(212, 212, 212, 0.75);">Esta página é protegida pelo Google reCAPTCHA para garantir que você não é um robô. <a href="#"> Saiba mais.</a></span> </p>
</div>
</form>
</section>
</div>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
-->
</body>
</html>