1da0747f83595e960ef04b20f1dfb3895e84c147
[clinton/MarylandElectronicPetitionSignature.git] / is_the_information_correct.php
1 <?PHP
2 $web_first_name = $_COOKIE['web_first_name'];
3 $web_last_name = $_COOKIE['web_last_name'];
4 $web_house_number = $_COOKIE['web_house_number'];
5 $web_zip_code = $_COOKIE['web_zip_code'];
6 $DOB = $_COOKIE['pDOB'];
7 $PHONE = $_COOKIE['pPHONE'];
8 if ($web_first_name != '' && $web_last_name != '' && $web_house_number != '' && $web_zip_code != ''){
9 // ok to check for records
10 }else{
11 header('Location: warning_incomplete.php');
12 }
13 include_once('header.php');
14 $q = "select * from VoterList where LASTNAME = '$web_last_name' and FIRSTNAME = '$web_first_name' and HOUSE_NUMBER = '$web_house_number' and RESIDENTIALZIP5 = '$web_zip_code'";
15 $r = $petition->query($q);
16 $d = mysqli_fetch_array($r);
17 if ($d['VTRID'] != ''){
18 $VTRID = $d['VTRID'];
19 $FIRSTNAME = $d['FIRSTNAME'];
20 $MIDDLENAME = $d['MIDDLENAME'];
21 $LASTNAME = $d['LASTNAME'];
22 $ADDRESS = $d['ADDRESS'];
23 $RESIDENTIALCITY = $d['RESIDENTIALCITY'];
24 $COUNTY = $d['COUNTY'];
25 $RESIDENTIALZIP5 = $d['RESIDENTIALZIP5'];
26 // set cookies for hard_copy.php
27 setcookie("pCOUNTY", $COUNTY);
28 setcookie("pNAME", "$FIRSTNAME $MIDDLENAME $LASTNAME");
29 setcookie("pADDRESS", "$ADDRESS $RESIDENTIALCITY $RESIDENTIALZIP5");
30 setcookie("pADDRESS1", "$ADDRESS");
31 setcookie("pADDRESS2", "$RESIDENTIALCITY MD $RESIDENTIALZIP5");
32 setcookie("pVTRID", $VTRID);
33 setcookie("signature_status", 'verified');
34 }else{
35 setcookie("signature_status", 'notfound');
36 header('Location: warning_not_found.php');
37 }
38 ?>
39 <script>document.title = "MEPS - Confirm information";</script>
40 <div class='row'>
41 <div class='col-sm-12' style='height:100px; text-align:center;'><h2>Is this information correct?</h2></div>
42 </div>
43 <div class='row'>
44 <div class='col-sm-6' style='height:50px; text-align:center;'>First Name</div><div class='col-sm-6' style='height:50px; text-align:center;'><?PHP echo $FIRSTNAME;?></div>
45 </div>
46 <div class='row'>
47 <div class='col-sm-6' style='height:50px; text-align:center;'>Middle Name </div><div class='col-sm-6' style='height:50px; text-align:center;'><?PHP echo $MIDDLENAME;?></div>
48 </div>
49 <div class='row'>
50 <div class='col-sm-6' style='height:50px; text-align:center;'>Last Name </div><div class='col-sm-6' style='height:50px; text-align:center;'><?PHP echo $LASTNAME;?></div>
51 </div>
52 <div class='row'>
53 <div class='col-sm-6' style='height:50px; text-align:center;'>Date of Birth </div><div class='col-sm-6' style='height:50px; text-align:center;'><?PHP echo $DOB;?></div>
54 </div>
55 <div class='row'>
56 <div class='col-sm-6' style='height:50px; text-align:center;'>Full Addresss </div><div class='col-sm-6' style='height:50px; text-align:center;'><?PHP echo $ADDRESS;?></div>
57 </div>
58 <div class='row'>
59 <div class='col-sm-6' style='height:50px; text-align:center;'>Phone </div><div class='col-sm-6' style='height:50px; text-align:center;'><?PHP echo $PHONE;?></div>
60 </div>
61 <div class='row'>
62 <div class='col-sm-2' style='height:50px; text-align:center;'>City</div><div class='col-sm-2'><?PHP echo $RESIDENTIALCITY;?></div>
63 <div class='col-sm-2'>County</div><div class='col-sm-2'><?PHP echo $COUNTY;?></div>
64 <div class='col-sm-2'>Zip</div><div class='col-sm-2'><?PHP echo $RESIDENTIALZIP5;?></div>
65 </div>
66 <div class='row'>
67 <div class='col-sm-6' style='height:50px; text-align:center;'><button type="button" class="btn btn-success" onclick="window.location.href='eligible.php'">YES</button></div>
68 <div class='col-sm-6' style='height:50px; text-align:center;'><button type="button" class="btn btn-danger" onclick="window.location.href='reset.php'">NO</button></div>
69 </div>
70
71
72
73
74
75
76
77
78 <?PHP include_once('footer.php');