-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario.html
39 lines (31 loc) · 1.19 KB
/
formulario.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="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="main_login">
<div class="left_login">
<h1>Faça Login<br> entre para o nosso time</h1>
<img src="img/witch-animate.svg" class="left_login-image" alt="bruxinha no espaço">
</div>
<div class="right_login">
<div class="card_login">
<h2>LOGIN</h2>
<div class="input_card">
<label for="usuario">Usuário</label>
<input type="text" name="usuario" id="usuario" placeholder="Usuário">
</div>
<div class="input_card">
<label for="senha">Senha</label>
<input type="password" name="senha" id="senha" placeholder="Crie uma Senha">
</div>
<button class="btn_login" type="submit">Login</button>
</div>
</div>
</div>
</body>
</html>