44 lines
918 B
HTML
44 lines
918 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Utilisateurs</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
table, th, td {
|
|
border:1px solid black;
|
|
/*border-collapse: collapse;*/
|
|
padding: 5px;
|
|
}
|
|
tr:hover {background-color: #D6EEEE;}
|
|
.called_0 {
|
|
background-color: grey;
|
|
}
|
|
.voted_1 {
|
|
background-color: green;
|
|
}
|
|
.voted_0 {
|
|
background-color: red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
function deleteContact(phone) {
|
|
fetch(`/api/contacts/${phone}`, {
|
|
method: "DELETE",
|
|
})
|
|
.then(async (response) => {
|
|
const res = await response.json();
|
|
console.log(res);
|
|
if(!response.ok) return alert(res.message);
|
|
location.reload();
|
|
});
|
|
}
|
|
</script>
|
|
<NAVBAR>
|
|
<CONTACTTABLE>
|
|
<a href='./'><p>Retour</p></a>
|
|
</body>
|
|
</html>
|