-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 1020 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ListaFlix</title>
</head>
<body>
<div style="display: flex;">
<div style="display: flex; width: 300px; height: 100px; justify-content: space-between; flex-direction: column;">
<!-- <input id="login" placeholder="Login" onchange="preencherLogin(event)">
<input id="senha" placeholder="Senha" type="password" onchange="preencherSenha(event)">
<input id="api-key" placeholder="Api Key" onchange="preencherApi()">
<button id="login-button" disabled>Login</button>
</div> -->
<div id="search-container" style="margin-left: 20px">
<input id="search" placeholder="Escreva...">
<button id="search-button">Pesquisar filme</button>
</div>
</div>
<script src="script.ts"></script>
</body>
</html>