-
Notifications
You must be signed in to change notification settings - Fork 0
/
create-point.html
87 lines (62 loc) · 3.17 KB
/
create-point.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="pt_br">
<head>
<meta charset="UTF-8"> <!---- <aceita caracter especiais> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- para confg o site responsivo-->
<title>Criar um ponto de coleta</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Ubuntu:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/styles/main.css">
<link rel="stylesheet" href="/styles/create-point.css">
<link rel="stylesheet" href="/styles/responsive.css"> <!-- refatoração: importando o responsive -->
</head>
<body>
<div id="page-create-point">
<header>
<img src="/assets/logo.svg" alt="Logomarca">
<a href="/">
<span></span>
Voltar para home
</a>
</header>
<form action="">
<h1>Cadastro do ponto de entidade</h1>
<fieldset> <!-- coleção de campos -->
<legend>
<h2>Dados de coleta</h2>
</legend>
<div class="field">
<label for="name">Nome da entidade</label>
<input type="text" name="name">
</div>
<div class="field-group">
<div class="field">
<label for="address">Endereço</label>
<input type="text" name="address">
</div>
<div class="field">
<label for="address2">Número/Complemento</label>
<input type="text" name="address2">
</div>
</div>
<div class="field-group">
<div class="field">
<label for="state">Estado</label>
<select name="uf">
<option value="">Selecione o Estado</option>
</select>
<input type="hidden" name="state">
</div>
<div class="field">
<label for="city">Cidade</label>
<select name="city" disabled>
<option value="">Selecione a Cidade</option>
</select>
</div>
</div>
</fieldset>
<button type="submit">Cadastrar ponto de coleta</button>
</form>
</div>
<script src="/scripts/create-point.js"></script>
</body>
</html>