44 lines
1.7 KiB
HTML
44 lines
1.7 KiB
HTML
<html lang="fr">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Connexion au LDAP</title>
|
|
<!-- Bootstrap CSS -->
|
|
<link rel="stylesheet" href="../css/index.css">
|
|
<link rel="stylesheet" href="../css/main.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="row">
|
|
<form class="form bg-primary col-lg-4 col-10 rounded position-absolute top-50 start-50 translate-middle"
|
|
method="post" action="">
|
|
<h2 class="text-center pt-3">Authentification</h2>
|
|
|
|
<label class="form-label" for="domain"></label>
|
|
<div class="d-flex justify-content-center bg-secondary rounded p-1">
|
|
<i class="fa-solid fa-at fa-xl mx-1" style="transform: translateY(50%);"></i>
|
|
<input class="form-control bg-secondary border-0" type="text" id="domain" name="domain"
|
|
value="woodywood" style="width: 90%;" required>
|
|
</div>
|
|
|
|
<label class="form-label" for="user"></label>
|
|
<div class="d-flex justify-content-center bg-secondary rounded p-1">
|
|
<i class="fa-solid fa-at fa-xl mx-1" style="transform: translateY(50%);"></i>
|
|
<input class="form-control bg-secondary border-0" type="text" id="user" name="user"
|
|
placeholder="Nom d'utilisateur" style="width: 90%;" required>
|
|
</div>
|
|
|
|
<label class="form-label" for="password"></label>
|
|
<div class="d-flex justify-content-center bg-secondary rounded p-1">
|
|
<i class="fa-solid fa-lock fa-xl mx-1" style="transform: translateY(50%);"></i>
|
|
<input class="form-control bg-secondary border-0" type="password" id="password" name="password"
|
|
placeholder="Mot de passe" style="width: 90%;" required>
|
|
</div>
|
|
|
|
<input class="form-control my-3" type="submit" value="Connexion">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |