-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnexion.php
56 lines (48 loc) · 1.31 KB
/
connexion.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
include("bdd/connexion_bdd.php");
?>
<!DOCTYPE html>
<html>
<head>
<?php
include("raccourcis/link_header.php");
?>
<title>Connexion</title>
</head>
<body>
<?php
include("raccourcis/header.php");
?>
<div class="affichage">
<div class="content">
<div class="formulaire">
<form method="POST" action="" class="login active">
<br/>
<h1>Connexion</h1>
<div>
<label for="mailconnect">EMAIL</label>
<input type="text" placeholder="Votre mail" id="mailconnect" name="mailconnect" />
</div>
<div>
<label for="mdpconnect"> MOT DE PASSE <label>
<input type="password" placeholder="Votre mdp" id="mdpconnect" name="mdpconnect" />
</div>
<div class="bottom">
<?php
if(isset($erreur)) {
echo '<font color="red">'.$erreur."</font>";
}
?>
<input type="checkbox" name="remember" id="remembercheck"/><label for="remembercheck">Se souvenir de moi</label>
<input type="submit" name="formconnexion" value="Se connecter" />
<a href="formulaire_inscription.php" rel="register" class="linkform">Pas encore de compte ? <br/>Inscrivez-vous ici</a>
</div>
</form>
</div>
</div>
<?php
include("raccourcis/footer.php");
?>
</div>
</body>
</html>