forked from ElectronicPetitions/Maryland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
47 lines (45 loc) · 1.98 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
<?PHP
if (isset($_GET['invite'])){
setcookie("invite", $_GET['invite']);
header('Location: index.php');
}
$title = 'MEPS - Are you Registered?';
if ($_COOKIE['invite'] != ''){
$title = 'MEPS ('.strtoupper($_COOKIE['invite']).') - Are you Registered?';
}
include_once('header.php');
slack_general('Home Page Loaded ('.$_COOKIE['invite'].')','md-petition');
$q = "select * from website_text where id = '1'";
$r = $petition->query($q);
$d = mysqli_fetch_array($r);
?>
<script>document.title = "<?PHP echo $title;?>";</script>
<div class='row'>
<div class='col-sm-10' style='text-align:center;'><h1><?PHP echo $d['text_title'];?></h1><h2><?PHP echo $d['text_block'];?></h2></div>
</div>
<div class='row'>
<div class='col-sm-5' style='text-align:center;'><button type="button" class="btn btn-success btn-lg btn-block" onclick="window.location.href='enter_information.php'"><img class='click_me' src="files/click_here.gif">YES - CLICK HERE TO BEGIN</button></div>
<div class='col-sm-5' style='text-align:center;'><button type="button" class="btn btn-danger btn-lg btn-block not_me" onclick="window.location.href='not_a_registered_voter.php'">NO</button></div>
</div>
<div class='row'>
<div class='col-sm-10' style='text-align:center;'><br><br><br><h3>We are hosting the following petitions: </h3>
<?PHP
$q2 = "SELECT * FROM petitions where admin_status = 'approved' order by RAND()";
$r2 = $petition->query($q2);
while($d2 = mysqli_fetch_array($r2)){
$link = "?invite=$d2[web_short_name]";
if ($d2['landing_page'] != ''){
$link = $d2['landing_page'];
}
echo " <button class='$d2[web_short_name]' style='color:$d2[web_color_text]; background-color:$d2[web_color]; border: solid 1px black; padding:5px;'>$d2[petition_name]</button>
<script>
$('.$d2[web_short_name]').click(function() {
location.href = 'https://www.md-petition.com/$link';
});
</script>";
}
?>
</div>
</div>
<?PHP
include_once('footer.php');