-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
72 lines (59 loc) · 1.5 KB
/
index.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
<?php
/* --- GenderWatchProtocole · index.php ------
Permet le loggin des personnes
Vérifie si cookie présent => loggin automatique
---------------------------------------------*/
// Ouverture session et vérification session validée
session_start();
session_destroy();
if (isset($_COOKIE["GW_user"]) and isset($_COOKIE["GW_password"])) {
// Cookie de loggin automatique exitsant, on part au loggin
header("Location:loggin.php");
} else {
// Pas de loggin automatique, on fait rien
NULL;
}
//Pour le bouton share
include("html_module.php");
?>
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="graphic/icone.png"/>
<title>GenderWatch</title>
<link rel="stylesheet" href="graphic/css.css"/>
</head>
<body>
<h1>Gender Watch</br>Protocole</h1>
<image src="graphic/logo.png" align="middle" class="logo_index">
</br>
</br>
</br>
<?php
if (isset($_GET["msg"])) {
echo "<p>" . $_GET["msg"] . "</p>";
} else {
echo "</br>";
}
?>
<form action="loggin.php" method="post" class="singin_index_input">
<label for="index_input_user">Nom d'utilisat·eur·rice : </label>
</br>
<input type="text" name="index_input_user"
class="singin_index_input"/>
</br>
</br>
<label for="index_input_pass">Mot de passe : </label>
</br>
<input type="password" name="index_input_pass"
class="singin_index_input"/>
</br>
</br>
<button action="submit">Valider</button>
</form>
<?php bouton_lien("Voir un Watch partagé", "share"); ?>
<?php
include("footer.php");
?>
</body>
</html>