Add files via upload
[clinton/MarylandElectronicPetitionSignature.git] / index.php
dissimilarity index 99%
index e3f14ad..1d13732 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,9 +1,47 @@
-<?PHP include_once('header.php');  ?>
-
-  <div class='col-sm-12' style='height:50px; text-align:center;'> Are you a Registeded Maryland Voter?</div>
-  
-  <div class='col-sm-6' style='height:50px; text-align:center;'><button type="button" class="btn btn-success" onclick="window.location.href='enter_information.php'>YES</button></div>
-  
-  <div class='col-sm-6' style='height:50px; text-align:center;'><button type="button" class="btn btn-danger" onclick="window.location.href='not_a_registered_voter.php'">NO</button> </div>
-  
-<?PHP include_once('footer.php');
+<?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');