-
Notifications
You must be signed in to change notification settings - Fork 0
/
avertissement.php
executable file
·40 lines (36 loc) · 1.05 KB
/
avertissement.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
<?php
include('./requiert/new-form/header.php');
$meta_title = 'Quizzdeal.fr';
$meta_description = 'Avertisement';
include('./requiert/php-form/login-register.php');
$_SESSION['pmessage'] = "Mon message";
if (!isset($_SESSION['pmessage'])) {
header('Location: index.php');
exit;
}
?>
<style type="text/css">
.avertissement{
text-align: center;
font-size: 26px;
font-weight: 600;
}
.message-wrapper{
margin-top: 50px;
}
</style>
<div class="container" style="margin-top: 50px;">
<div class="row">
<div class="col-md-12">
<div class="avertissement">Avertissement</div>
<div class="message-wrapper">
<p style="font-size: 1.3em;"><?= ucfirst($_SESSION['pmessage']);?></p>
<a class="button_link button tertiary" href="./index.php?seenpmessage=1">J'ai bien lu ce message</a>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
<?php
include('./requiert/new-form/footer.php');
?>