Update index.php
[clinton/MarylandElectronicPetitionSignature.git] / index.php
dissimilarity index 92%
index 740c6ca..ba95ca8 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,20 +1,24 @@
-<?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
-  if ($result = $petition->query("SELECT VTRID FROM VoterList")) {
-
-    /* determine number of rows result set */
-    $row_cnt = $result->num_rows;
-
-    printf("Result set has %d rows.\n", $row_cnt);
-
-    /* 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','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-12' 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-6' style='text-align:center;'><button type="button" class="btn btn-success btn-lg btn-block" onclick="window.location.href='enter_information.php'">YES</button></div>
+  <div class='col-sm-6' style='text-align:center;'><button type="button" class="btn btn-danger btn-lg btn-block" onclick="window.location.href='not_a_registered_voter.php'">NO</button></div>
+ </div> 
+<?PHP include_once('footer.php');