feat: implement user creation, editing, and deletion functionality ALL features are working
This commit is contained in:
@@ -36,8 +36,8 @@ if (!empty($users)) {
|
||||
<td>" . ($entry['mail'][0] ?? '') . "</td>
|
||||
<td>" . ($entry['distinguishedname'][0] ?? '') . "</td>
|
||||
<td>
|
||||
<a href='edit_user.php?dn=" . urlencode($entry['distinguishedname'][0]) . "'>Modifier</a>
|
||||
<a href='delete_user.php?dn=" . urlencode($entry['distinguishedname'][0]) . "' onclick='return confirm(\"Confirmer la suppression ?\")'>Supprimer</a>
|
||||
<a href='../views/edit_user.php?dn=" . urlencode($entry['distinguishedname'][0]) . "'>Modifier</a>
|
||||
<a href='../controllers/delete_user.php?dn=" . urlencode($entry['distinguishedname'][0]) . "' onclick='return confirm(\"Confirmer la suppression ?\")'>Supprimer</a>
|
||||
</td>
|
||||
</tr>";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user