parent
30ea0dc5f5
commit
e511392464
@ -0,0 +1,6 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
//gen
|
||||||
|
$rep=__DIR__.'/../';
|
||||||
|
|
||||||
|
?>
|
@ -0,0 +1,5 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
finduserbylogin
|
||||||
|
|
||||||
|
?>
|
@ -0,0 +1,3 @@
|
|||||||
|
<?php
|
||||||
|
finduserbylogin
|
||||||
|
?>
|
@ -0,0 +1,23 @@
|
|||||||
|
body{
|
||||||
|
text-align : center;
|
||||||
|
}
|
||||||
|
|
||||||
|
form{
|
||||||
|
display : flex;
|
||||||
|
flex-flow : column nowrap;
|
||||||
|
align-items : center;
|
||||||
|
}
|
||||||
|
|
||||||
|
input{
|
||||||
|
width : 90%;
|
||||||
|
border-radius : 5px;
|
||||||
|
color : #595959;
|
||||||
|
}
|
||||||
|
|
||||||
|
label{
|
||||||
|
margin-top : 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btnEnvoi{
|
||||||
|
margin: 20px;
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<link rel="stylesheet" href="authentification.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Magnifique To do list</h1>
|
||||||
|
<form action="authentification.php" method="POST">
|
||||||
|
<label>Login</label>
|
||||||
|
<input type="text" name="login" placeholder="Saisir votre login" required />
|
||||||
|
<label>Mot de passe</label>
|
||||||
|
<input type="mdp" name="mdp" placeholder="Saisissez votre mot de passe" required />
|
||||||
|
<div id="btnEnvoi">
|
||||||
|
<input name="envoyer" type="submit" id="envoyer"/>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in new issue