Add files via upload
[clinton/MarylandElectronicPetitionSignature.git] / index.php
dissimilarity index 99%
index 921ee10..1d13732 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,20 +1,47 @@
-<?PHP include_once('header.php');  ?>
-<div class="container">
-  <h3>Welcome!</h3>
-    Development In Progress -  Please Click Through the Menu to Review 
-  <h3>Stats</h3>
-  <?PHP
-  $expected = 4194252;
-  if ($result = $petition->query("SELECT VTRID FROM VoterList")) {
-    $row_cnt = $result->num_rows;
-    $c = $row_cnt / $expected;
-    $p = number_format($c,2)*100;
-    echo number_format($row_cnt).' out of '.number_format($expected).' '.$p.'% done.';
-
-    /* close result set */
-    $result->close();
-}
-  
-  ?>
-</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');