2023-12-12 14:34:57 +01:00

39 lines
841 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;
}
table a {
display:block;
text-decoration:none;
}
tr:hover {background-color: #D6EEEE;}
</style>
</head>
<body>
<script>
function deleteUser(username) {
fetch(`/api/users/${username}`, {
method: "DELETE",
})
.then(async (response) => {
const res = await response.json();
console.log(res);
if(!response.ok) return alert(res.message);
location.reload();
});
}
</script>
<NAVBAR>
<USERTABLE>
<a href='./'><p>Retour</p></a>
</body>
</html>