-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastrar-entidade.html
44 lines (44 loc) · 1.94 KB
/
cadastrar-entidade.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="assets/fontawesome-free-6.5.2-web/css/all.css">
<title>Cadastra entidades</title>
</head>
<body>
<div class="content">
<aside class="container-imagem">
<img src="assets/heart.jpg" alt="logo">
<h1 class="titulo"><span class="palavra-destaque">We</span> Form</h1>
</aside>
<main class="container-principal">
<section class="section-header">
<a href="index.html" data-anchor="link-inicio"><i class="fa-solid fa-angle-left"></i></a>
<h2>Nova<span class="palavra-destaque"> entidade</span></h2>
</section>
<form class="formulario-cadastro">
<label for="input-name">Nome</label>
<input type="text" id="input-name">
<div class="div-select">
<label for="input-field">Campo de atuação</label>
<select type="text" id="input-field">
<option value="">selecione uma opção</option>
<option value="abrigo-de-animais">abrido de animais</option>
<option value="centro-de-alimentacao">centro de alimentação</option>
<option value="creche-infantil">creche infantil</option>
</select>
</div>
<div class="points">
<label for="input-points">Pontos de coleta</label>
<input type="text" id="input-points"><button><i class="fa-solid fa-plus"></i></button>
</div>
<div data-botao="button">
<button class="botao-cadastrar">Cadastrar</button>
</div>
</form>
</main>
</div>
</body>
</html>