feat: add CSS styling
This commit is contained in:
@@ -19,6 +19,7 @@ $user_details = $ldapAuth->getUserDetailsByDn($user_dn);
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Modifier un utilisateur</title>
|
||||
<link rel="stylesheet" href="../assets/css/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@@ -26,10 +27,13 @@ $user_details = $ldapAuth->getUserDetailsByDn($user_dn);
|
||||
<form action="../controllers/edit_user.php" method="post">
|
||||
<input type="hidden" name="dn" value="<?= htmlspecialchars($user_dn) ?>">
|
||||
|
||||
<input type="text" id="firstname" name="firstname" value="<?= htmlspecialchars($user_details['givenName'] ?? '') ?>">
|
||||
|
||||
<label for="lastname">Nom :</label>
|
||||
<input type="text" id="lastname" name="lastname" value="<?= htmlspecialchars($user_details['sn'] ?? '') ?>">
|
||||
|
||||
<label for="firstname">Prénom :</label>
|
||||
<input type="text" id="firstname" name="firstname" value="<?= htmlspecialchars($user_details['givenname'] ?? '') ?>">
|
||||
|
||||
<label for="email">E-mail :</label>
|
||||
<input type="email" id="email" name="email" value="<?= htmlspecialchars($user_details['mail'] ?? '') ?>">
|
||||
|
||||
<label for="new_password">Nouveau mot de passe :</label>
|
||||
|
||||
Reference in New Issue
Block a user