-
Notifications
You must be signed in to change notification settings - Fork 0
/
homePageAdherent.php
110 lines (100 loc) · 3.61 KB
/
homePageAdherent.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php
session_start();
$_SESSION = array();
session_destroy();
$error = htmlspecialchars($_POST["error"]);
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>A2L connexion adhérents</title>
<link rel="stylesheet" href="source/style.css"/>
<link rel="shortcut icon" type="image/x-icon" href="source/images/logo.JPG"/>
</head>
<body>
<?PHP
require("source/Class/EtatSite/etat_site.php");
$etatSite = new EtatSite();
?>
<div id="maintenance" style="background:<?PHP echo $etatSite->getColor(); ?>; width : 100%;
margin-top:0%;
margin-left: 0%;
text-align: center;
color:white;
box-shadow: 5px 5px 5px black;
font-size:0.5em;
font-family: comfortaa-regular, Arial, sans-serif;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;"><h1 id="etatSite"><?PHP echo $etatSite->getMessage(); ?></h1></div>
<header>
<p><a href="homePageAdherent.php"><img src="source/images/logo.JPG" alt="logo de l'A2L" title="Se déconnecter"/></a></p>
<p>Site officiel de l'A2L</p>
</header>
<section>
<article>
<?PHP
if($error != ""){
sleep(1);?>
<h1 class="h1error"><?PHP echo $error; ?></h1>
<?PHP } else { ?>
<h1 class="h1">Connexion des adhérents</h1>
<?PHP } ?>
</article>
<article>
<form method="post" action="ficheAdherent.php">
<div id="connexion">
<div class="elementConnexion">
<p>
<?PHP
if($error != ""){?>
<label for="Prénom">Prénom</label> : <input type="text" name="PrenomField" id="Prénom" placeholder="Prénom" class="inputError"/>
<?PHP } else {
?> <label for="Prénom">Prénom</label> : <input type="text" name="PrenomField" id="Prénom" placeholder="Prénom" class="input"/> <?PHP
}?>
</p>
</div>
<div class="elementConnexion">
<p>
<?PHP
if($error != ""){?>
<label for="Nom">Nom</label> : <input type="text" name="NomField" id="Nom" placeholder="Nom" class="inputError"/>
<?PHP } else {
?> <label for="Nom">Nom</label> : <input type="text" name="NomField" id="Nom" placeholder="Nom" class="input"/> <?PHP
}?>
</p>
</div>
</div>
<p>
<?PHP
if($error != ""){?>
<label for="DateNaissance">Date de naissance </label> : <input type="text" name="DateNaissanceField" id="DateNaissance" class="inputError" placeholder="✘✘dd/mm/yyyy✘✘"/>
<?PHP } else {
?> <label for="DateNaissance">Date de naissance</label> : <input type="text" name="DateNaissanceField" id="DateNaissance" class="input" placeholder="✘✘dd/mm/yyyy✘✘"/> <?PHP
}?>
</p>
<input type="submit" value="Connexion" class="connexionButton">
</form>
</article>
<article>
<h4>Pour plus d'informations adressez-vous à un membre du bureau !</h3>
<h3>Je suis admin et je réclame mes droits ! <a href="homePageAdmin.php" title="Page de connexion pour les adhérents">Connecte toi ici alors</a>
</article>
</section>
<footer>
<div id="footer">
<div class="elementFooter">
<p><a href="mailto:[email protected]" title="Signaler un bug"> Signaler un bug</a></p>
</div>
<div class="elementFooter">
<p><a href="pageAide.php" title="Aide">Un peu d'aide ?</a></p>
</div>
<div class="elementFooter">
<p>Ce site web, et l'application ont été developpés par <a href="http://nathanstchepinsky--nathans1.repl.co" title="Visiter le site du developpeur">Nathan</a></p>
</div>
</div>
</footer>
</body>
</html>
<?php
?>