-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./css/Global.css">
<link rel="stylesheet" href="./css/Auth.css">
<title>Netflix</title>
</head>
<body>
<div class="top">
<a href="#"><img class="image-logo" src="./assets/logo.png" alt=""></a>
</div>
<div class="content">
<form class="form-login" id="form_login" method="post">
<div class="title">
<h1>Entrar</h1>
</div>
<div class="content-input">
<input autocomplete="off" class="input" type="email" name="email" id="email" placeholder="Email">
<span class="textError" id="errorEmail"></span>
</div>
<div class="content-input">
<input autocomplete="off" class="input" type="password" name="password" id="password"
placeholder="Senha">
<span class="textError" id="errorPassword"></span>
</div>
<div class="content-button">
<button type="submit" class="button">Entrar</button>
</div>
</form>
</div>
<script src="js/Auth.js"></script>
</body>
</html>