-
Notifications
You must be signed in to change notification settings - Fork 0
/
mdp.php
83 lines (48 loc) · 1.23 KB
/
mdp.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<title>Mot de passe</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" media="screen" type="text/css" title="css" href="login.css" />
<link rel="icon" href="Images/cadena.png" />
</head>
<body>
<div id="full" class="" >
<div id="log_container" class="" >
<div class="logbox">
<h2>Accès Unsa</h2>
<form action="index.php" method="post" id="pass" class="form-password">
<table id="inscript">
<tr>
<td><input type="text" name="login" placeholder="login" maxlength="20" style="baground-color: #bdd76e;" autofocus/></td>
</tr>
<tr>
<td><input type="password" name="mdp" /></td>
</tr>
<?php
if(isset($wrong)){
?>
<tr>
<td><div id="bad-pass"><?php echo $wrong; ?></div></td>
</tr>
<?php
}
?>
<tr>
<td><input type="submit" name="entrer" value="Entrer"/></td>
</tr>
</form>
</table>
<table id="inscript">
<tr>
<td><a href="inscription.php"><input class="inscription" type="button" value="Inscription" /></a></td>
</tr>
<tr>
<td><a href="mdpoublie.php"><input class="mdp" type="button" value="Mot de passe oublié" /></a></td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>