parent
5689be418e
commit
9fa238e093
@ -0,0 +1,64 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<title>Maths Educ</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
||||
</script>
|
||||
<link rel="stylesheet" href="css/global.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="modal fade" id="modalUpdateAdministrators">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="exampleModalLabel">Modifier un administrateur</h5>
|
||||
</div>
|
||||
<form method="POST" action="/admin/administrators/update">
|
||||
<div class="modal-body">
|
||||
<div class="form-group">
|
||||
<input type="hidden" class="form-control" id="updateId" name="id">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="username">Nom d'utilisateur :</label>
|
||||
<input type="text" class="form-control" id="updateUsername" name="username">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="password">Mot de passe :</label>
|
||||
<input type="password" class="form-control" id="updatePassword" name="password">
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Fermer</button>
|
||||
<button type="submit" class="btn btn-primary">Enregistrer</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
||||
|
||||
<script>
|
||||
if ({{ administrator.id }} != 0) {
|
||||
window.onload = showModal();
|
||||
|
||||
function showModal() {
|
||||
var modal = new bootstrap.Modal(document.getElementById('modalUpdateAdministrators'));
|
||||
|
||||
var id = document.getElementById('updateId');
|
||||
var username = document.getElementById('updateUsername');
|
||||
var password = document.getElementById('updatePassword');
|
||||
|
||||
id.value = "{{ administrator.id }}";
|
||||
username.value = "{{ administrator.username }}";
|
||||
password.value = "{{ administrator.hashedPassword }}";
|
||||
|
||||
modal.show();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset=utf-8>
|
||||
<title>Math'Educ</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="/css/global.css">
|
||||
</head>
|
||||
|
||||
<body id="bodyStyle">
|
||||
<div class="container mt-5">
|
||||
<div>
|
||||
<p>test</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in new issue