-
Notifications
You must be signed in to change notification settings - Fork 0
/
add-info.html
83 lines (67 loc) · 3.03 KB
/
add-info.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
<!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">
<title>GF - Adicionar animais</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style-add-info.css">
<link rel="icon" href="/img/cow-icon.png">
</head>
<body>
<header>
<h1>Adicionar animais</h1>
</header>
<main>
<form class="input-panel">
<h2>Entrada de dados</h2>
<div class="input-data">
<label for="cow-name">Nome</label>
<input type="text" class="cow-name-it">
</div>
<div class="input-data">
<label for="cow-age">Idade</label>
<input type="text" maxlength="2" class="cow-age-it">
</div>
<div class="input-data">
<label for="calving-date">Data de parto</label>
<input type="text" placeholder="DD/MM/AAAA" maxlength="10"
minlength="10" required class="calving-date-it">
</div>
<div class="input-data">
<label for="insemination-date">Data de inseminação</label>
<input type="text" placeholder="DD/MM/AAAA" maxlength="10"
minlength="10" required class="insemination-date-it">
</div>
<div class="input-data">
<label for="milk-measure">Medição de leite</label>
<input type="text" maxlength="2" class="milk-measure-it">
</div>
<div class="btn-data-div">
<button class="btn-process-data">Processar dados</button>
</div>
</form>
<section class="output-panel">
<div class="output-data">
<h2>Confirmar dados</h2>
<h3>Dados</h3>
<h4>Nome: <em class="cow-name em hidden"></em> </h4>
<h4>Idade:<em class="cow-age em hidden"></em></h4>
<h4>Data de parto: <em class="calving-date em hidden"></em></h4>
<h4>Data de inseminação:<em class="insemination-date em hidden"></em></h4>
<h4>Previsão de parto:<em class="calving-prognostic em hidden"></em></h4>
<h4>Medição de leite: <em class="milk-measure em hidden"></em></h4>
<h4>SUgestão de ração: <em class="cattle-feed em hidden"></em></h4>
<button class="btn-save-database">Salvar no banco de dados</button>
<button class="btn-clear-fields">Limpar campos</button>
<a href="index.html"><button class="btn-back-home">Voltar para home</button></a>
</div>
</section>
</main>
<footer>
<p>©IRS - 2022</p>
</footer>
<script type="module" src="script/addInfo.js"></script>
</body>
</html>