-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 1.06 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
<!doctype html>
<html lang="pt-br">
<head>
<link rel="icon" href="_img/logo.ico" type="image/x-icon" />
<link rel="shortcut icon" href="_img/logo.ico" type="image/x-logo_icon" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Login do Sistema</title>
<link href="_css/style.css" rel="stylesheet">
</head>
<body id="bodyLogin">
<form class="login">
<img src="_img/leoflix_logo_pequeno.png">
<h1>Faça seu login</h1>
<input type="text" class="login-box" placeholder="Usuário">
<input type="password" class="login-box" placeholder="Senha">
<button class="botao" type="submit">Entrar</button>
<p>
<a id="aLogin" href="paginaPrincipal.html">
Entrar
</a>
<a id="aLogin" href="cadastrarUsuario.html">
Cadastro
</a>
</p>
</form>
</body>
</html>