-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (41 loc) · 1.3 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Doe Sangue</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<img src="/logo.png" alt="imagem de Doe" class="logo">
<h2>A sua Doação importa</h2>
<p>Até 3 vidas com uma doação</p>
<p>mais de 38.000 doações são necessárias todos os dias</p>
<p>apenas 1,9% da população brasileira, doa sangue</p>
<button>Quero Ajudar</button>
</header>
<section class="form hide">
<h2> Entre na Lista de Doadores</h2>
<form action="/" method="POST">
<input type="text" name="name" placeholder="Nome Completo">
<input type="text" name="email" placeholder="Email">
<input type="text" name="blood" placeholder="Tipo Sanguineo">
<button>Quero Ajudar</button>
</form>
</section>
<main>
<h2> Últimos <span>Doadores</span></h2>
<section class="donors">
{% for donor in donors %}
<div class="donor">
<div class="blood">{{ donor.blood }}</div>
<p>{{ donor.name }}</p>
</div>
{% endfor %}
</section>
</main>
<footer>Com ❤ Florianópolis</footer>
<script src="/scripts.js"></script>
</body>
</html>