debut
This commit is contained in:
10
templates/login_failed.html
Normal file
10
templates/login_failed.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Mauvaise connexion</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Erreur lors de la connexion !</p>
|
||||
</body>
|
||||
</html>
|
||||
21
templates/login_form.html
Normal file
21
templates/login_form.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Connexion au LDAP</title>
|
||||
</head>
|
||||
<body>
|
||||
<form method="post" action="">
|
||||
<label for="domain">Domaine :</label>
|
||||
<input id="domain" name="domain" type="text" value="woodywood" required>
|
||||
<br/>
|
||||
<label for="user">Utilisateur :</label>
|
||||
<input id="user" name="user" type="text" placeholder="Utilisateur" required>
|
||||
<br/>
|
||||
<label for="password">Mot de passe :</label>
|
||||
<input id="password" name="password" type="password" placeholder="Mot de passe" required>
|
||||
<br/>
|
||||
<input type="submit" value="Envoyer"/>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
12
templates/login_success.html.php
Normal file
12
templates/login_success.html.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Connexion</title>
|
||||
</head>
|
||||
<body>
|
||||
<?php
|
||||
echo $body ?? "";
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user