-
Notifications
You must be signed in to change notification settings - Fork 0
/
novaEntidade.html
60 lines (45 loc) · 1.69 KB
/
novaEntidade.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="pt-Br">
<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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<title>Start</title>
</head>
<body>
<div class="content">
<aside>
<img src="assets/hero.svg" alt="">
<h1><span class="txtrosa">We</span> Form</h1>
</aside>
<main>
<h2 class="titulo">
<a href="index.html" class="icones">
<i class="fa-solid fa-share fa-flip-horizontal" style="color: #ff5678;"></i>
</a>Nova <span class="txtrosa">entidade</span>
</h2>
<form action="">
<label for="input-name">Nome</label>
<input type="text" id="input-name">
<label for="input-field">Campo de Atuação</label>
<input type="text" id="input-field">
<div class="points">
<label for="input-points">Pontos de Coleta</label>
<input type="text" id="input-points">
<button>
<i class="fa-solid fa-square-plus" style="color: #ff5678;"></i>
</button>
</div>
</form>
<div class="actions">
<a href="">Cadastrar</a>
</div>
</main>
</div>
</body>
</html>
<!-- https://www.figma.com/file/w11Rpk9e1tqreNMtHAVrDm/We-Form?type=design&node-id=0-1&t=KbnLvwWEHFgtuKaI-0 -->