-
Notifications
You must be signed in to change notification settings - Fork 1
/
adoption.html
111 lines (107 loc) · 4.94 KB
/
adoption.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ajouter une adoption</title>
<link rel="icon" type="image/png" href="./assets/images/petflix-logo.png">
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@^2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/reset.css">
<link rel="stylesheet" href="./assets/css/app.css">
</head>
<body class="bg-gray-900 text-white">
<header class="bg-gray-800 text-white p-4">
<div class="container mx-auto">
<a href="index.html" class="underline">Revenir à l'accueil</a>
</div>
</header>
<main class="container mx-auto mt-10 flex justify-center">
<div class="w-full max-w-2xl">
<h1 class="text-2xl font-bold mb-8">Ajouter une adoption</h1>
<form id="adoption-form" class="space-y-4">
<div class="space-y-2">
<div>
<label for="animal" class="block my-3 font-semibold">Nom de l'animal</label>
<select name="animal" id="animal" class="w-full p-2 rounded text-gray-900">
<option value="">Sélectionnez un animal</option>
</select>
</div>
<div>
<label for="adoptant" class="block my-3 font-semibold">Nom de l'adoptant</label>
<select name="adoptant" id="adoptant" class="w-full p-2 rounded text-gray-900">
<option value="">Sélectionnez un adoptant</option>
</select>
</div>
<div>
<label for="date" class="block my-3 font-semibold">Date d'adoption (aaaa-mm-jj)</label>
<input type="text" name="date" id="date" class="w-full p-2 rounded text-gray-900">
</div>
</div>
<button type="submit" class="px-4 py-2 bg-blue-600 hover:bg-blue-700 rounded text-white">Enregistrer</button>
</form>
</div>
</main>
<footer class="bg-gray-800 p-4 mt-8">
<div class="container mx-auto text-center text-gray-400">
<p>2024 - Petflix</p>
</div>
</footer>
<script>
document.getElementById('adoption-form').addEventListener('submit', function(event) {
event.preventDefault();
const formData = {
id_animal: document.getElementById('animal').value,
id_adoptant: document.getElementById('adoptant').value,
date_adoption: document.getElementById('date').value
};
console.log('formData', formData)
fetch('http://localhost:8000/create-adoption', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(formData)
})
.then(response => response.json())
.then(data => {
alert('Adoption ajoutée avec succès');
document.getElementById('adoption-form').reset(); // Réinitialiser le formulaire après l'envoi réussi
})
.catch(error => {
console.error('Erreur lors de l\'envoi des données d\'adoption:', error);
alert('Une erreur est survenue lors de l\'ajout de l\'adoption');
});
});
// Récupérer les données des animaux depuis l'API
fetch('http://localhost:8000/get-animaux')
.then(response => response.json())
.then(data => {
const selectAnimal = document.getElementById('animal');
data.animaux.forEach(animal => {
const option = document.createElement('option');
option.value = animal.id;
option.textContent = animal.nom;
selectAnimal.appendChild(option);
});
})
.catch(error => {
console.error('Erreur lors de la récupération des animaux:', error);
});
// Récupérer les données des adoptants depuis l'API
fetch('http://localhost:8000/get-adoptants')
.then(response => response.json())
.then(data => {
const selectAdoptant = document.getElementById('adoptant');
data.adoptants.forEach(adoptant => {
const option = document.createElement('option');
option.value = adoptant.id;
option.textContent = adoptant.nom + ' ' + adoptant.prenom;
selectAdoptant.appendChild(option);
});
})
.catch(error => {
console.error('Erreur lors de la récupération des adoptants:', error);
});
</script>
</body>
</html>