Update index.php
[clinton/MarylandElectronicPetitionSignature.git] / index.php
CommitLineData
f32310b2 1<?PHP
f32310b2
PM
2if (isset($_GET['invite'])){
3 setcookie("invite", $_GET['invite']);
feaa6e5f 4 header('Location: index.php');
f32310b2 5}
feaa6e5f 6include_once('header.php');
f32310b2 7?>
fcd911c1 8
d4d50f8a 9 <div class='col-sm-12' style='height:100px; text-align:center;'><h2>Are you a Registered Maryland Voter?</h2></div>
8d253be6 10
1626f0a9 11 <div class='col-sm-6' style='height:100px; text-align:center;'><button type="button" class="btn btn-success" onclick="window.location.href='enter_information.php'">YES</button></div>
8d253be6 12
1626f0a9 13 <div class='col-sm-6' style='height:100px; text-align:center;'><button type="button" class="btn btn-danger" onclick="window.location.href='not_a_registered_voter.php'">NO</button> </div>
8d253be6 14
fbb34525 15<?PHP include_once('footer.php');