-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.html
90 lines (74 loc) · 3.54 KB
/
forms.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
88
89
90
<!DOCTYPE html>
<html lang="pt_BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulário | Happy</title>
<link rel="icon" href="./images/logo-icon.png">
<link rel="stylesheet" href="./main.css">
<link rel="stylesheet" href="./pageOrphanages.css">
<link rel="stylesheet" href="./formulario.css">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&display=swap" rel="stylesheet">
</head>
<body>
<aside class="animate-right sidebar with-sidebar">
<img src="./images/map-marker.svg" alt="teste">
<footer>
<button onclick="history.back()">
<img src="./images/arrow-back.svg" alt="Voltar">
</button>
</footer>
</aside>
<div id="create-orphanage">
<form action="">
<fieldset>
<legend>Dados</legend>
<div class="input-block">
<label for="name">Nome</label>
<input type="text" id="name" required>
</div>
<div class="input-block">
<label for="about">Sobre <span>Máximo de 300 caracteres</span></label>
<textarea type="text" id="about" required></textarea>
</div>
<div class="input-block">
<label for="whatssap">Número de whatssap</label>
<input type="text" id="whatssap" required>
</div>
<div class="input-block images">
<label for="images">Foto</label>
<div class="images-upload" id="images">
<input name="images" placeholder="Cole o link da foto aqui" required>
<span><img src="./images/remove-file.svg" alt="remover"></span>
</div>
<button type="button">
<img src="./images/add-file.svg" alt="Nova imagem">
</button>
</div>
</fieldset>
<fieldset>
<legend>Visitação</legend>
<div class="input-block">
<label for="instructions">Instruções</label>
<textarea type="text" id="instructions" required></textarea>
</div>
<div class="input-block">
<label for="opening_hours">Hórario das visitas</label>
<input type="text" id="opening_hours" required>
</div>
<div class="input-block">
<label for="open_on_weekends">Atende fim de semana?</label>
<input type="hidden" id="open_on_weekends" value="1" required>
</div>
<div class="button-select">
<button type="button" class="active">Sim</button>
<button type="button">Não</button>
</div>
<button type="submit" class="primary-button">
Confirmar
</button>
</fieldset>
</form>
</div>
</body>
</html>