Update petition.php
[clinton/MarylandElectronicPetitionSignature.git] / petition.php
1 <?PHP
2 include_once('header.php');
3 if (isset($_POST['petition'])){
4 $id = $_POST['petition'];
5 setcookie("pID", $id);
6 $q = "select * from petitions where petition_id = '$id'";
7 $r = $petition->query($q);
8 $d = mysqli_fetch_array($r);
9 slack_general('OK POST: petition.php ('.$_COOKIE['invite'].')','md-petition');
10 }elseif($_COOKIE['pID'] != ''){
11 $id = $_COOKIE['pID'];
12 $q = "select * from petitions where petition_id = '$id'";
13 $r = $petition->query($q);
14 $d = mysqli_fetch_array($r);
15 slack_general('OK COOKIE: petition.php ('.$_COOKIE['invite'].')','md-petition');
16 }else{
17 slack_general('MAJOR ERROR: petition.php ('.$_COOKIE['invite'].')','md-petition');
18 header('Location: reset.php');
19 die('Error #15');
20 }
21 setcookie("pJPG", $d['petition_jpg']);
22 ?>
23 <script>
24 document.title = "MEPS - Sign <?PHP echo $d['petition_name'];?>";
25 $(document).ready(function() {
26 $('#myText').keypress(function(event){
27 if (event.keyCode == 10 || event.keyCode == 13)
28 event.preventDefault();
29 });
30 $('#myTextb').keypress(function(event){
31 if (event.keyCode == 10 || event.keyCode == 13)
32 event.preventDefault();
33 });
34 });
35 </script>
36 <style>
37 @font-face {
38 font-family: "myFirstFont";
39 src: url("files/Claston Script.ttf");
40 }
41 .sig {
42 font-family: "myFirstFont";
43 font-size: 60px;
44 }
45 </style>
46 <?PHP
47 if (isset($_POST['signed_name_as'])){
48 ?>
49 <script>
50 window.scrollTo(0,document.body.scrollHeight);
51 $(document).ready(function(){
52 window.scrollTo(0,document.body.scrollHeight);
53 $('#exampleModalLower').modal('show');
54 });
55 function addTextb()
56 {
57 document.getElementById('text2b').innerHTML = document.getElementById('myTextb').value;
58 var string = document.getElementById('myTextb').value;
59 var res = string.toUpperCase();
60 var result = res.match(/<?PHP echo $_COOKIE['pNAME'];?>/i);
61 if (result == "<?PHP echo $_COOKIE['pNAME'];?>"){
62 document.getElementById("b2").style.display = "block";
63 document.getElementById("b2warn").style.display = "none";
64 document.getElementById("click_me1").style.display = "none";
65 //alert("Confirmed : " + result);
66 }else{
67 document.getElementById("b2").style.display = "none";
68 document.getElementById("b2warn").style.display = "block";
69 document.getElementById("click_me1").style.display = "block";
70 }
71 }
72 </script>
73 <?PHP
74 }else{
75 ?>
76 <script>
77 $(document).ready(function(){
78 $('#exampleModalCenter').modal('show');
79 });
80 function addText()
81 {
82 document.getElementById('text2').innerHTML = document.getElementById('myText').value;
83 var string = document.getElementById('myText').value;
84 var res = string.toUpperCase();
85 var result = res.match(/<?PHP echo $_COOKIE['pNAME'];?>/i);
86 if (result == "<?PHP echo $_COOKIE['pNAME'];?>"){
87 document.getElementById("b1").style.display = "block";
88 document.getElementById("b1warn").style.display = "none";
89 document.getElementById("click_me2").style.display = "none";
90 //alert("Confirmed : " + result);
91 }else{
92 document.getElementById("b1").style.display = "none";
93 document.getElementById("b1warn").style.display = "block";
94 document.getElementById("click_me2").style.display = "block";
95 }
96 }
97 </script>
98 <?PHP
99 }
100 ?>
101
102 <!-- TOP Modal -->
103 <div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
104 <div class="modal-dialog" role="document">
105 <div class="modal-content">
106 <div class="modal-header">
107 <h1 class="modal-title" id="exampleModalLongTitle">Type Your Signature to Sign <?PHP echo $d['petition_name'];?></h1>
108 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
109 <span aria-hidden="true">&times;</span>
110 </button>
111 </div>
112 <form action='petition.php' method='POST'>
113 <div class="modal-body">
114 <h2><?PHP echo $d['petition_sign_text_box'];?></h2>
115 <h3><?PHP echo $_COOKIE['pNAME'];?>, Please Sign Here</h3>
116
117 </div>
118 <div class="modal-footer">
119 <h1 id="text2" class="sig"></h1>
120 <button style='display:none;' id='b1' name='b1' type="submit" class="btn btn-primary btn-lg btn-block"><img class='click_me' src="files/click_here.gif">Sign and Next</button>
121 <button style='display:block;' id='b1warn' name='b1warn' class="btn btn-warning btn-lg btn-block disabled" onclick="alert('Please Type Your Name Exactly as Above');">Please Type Your Name Exactly as Above</button>
122 <table><tr><td><img id='click_me1' name='click_me1' class='click_me' src="files/click_here.gif"></td><td><input class="form-control input-lg" name="signed_name_as" type="text" id="myText" onkeyup="addText()" required autofocus></td></tr></table>
123 </div>
124 </form>
125 </div>
126 </div>
127 </div>
128
129 <!-- Lower Modal -->
130 <div class="modal fade" id="exampleModalLower" tabindex="-1" role="dialog" aria-labelledby="exampleModalLowerTitle" aria-hidden="true">
131 <div class="modal-dialog modal-dialog-centered" role="document">
132 <div class="modal-content">
133 <div class="modal-header">
134 <h1 class="modal-title" id="exampleModalLongTitleLower">Type Your Signature to Sign as Circulator</h1>
135 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
136 <span aria-hidden="true">&times;</span>
137 </button>
138 </div>
139 <form action='sign.php' method='POST'><input type='hidden' value='<?PHP echo $_POST['signed_name_as'];?>' name='signed_name_as'>
140 <div class="modal-body">
141 <h2><?PHP echo $d['petition_circulator_text_box'];?></h2>
142 <h3><?PHP echo $_COOKIE['pNAME'];?>, Please Sign Here</h3>
143 </div>
144 <div class="modal-footer">
145 <h1 id="text2b" class="sig"></h1>
146 <button style='display:none;' id='b2' name='b2' type="submit" class="btn btn-primary btn-lg btn-block"><img class='click_me' src="files/click_here.gif">Sign and Submit</button>
147 <button style='display:block;' id='b2warn' name='b1warn' class="btn btn-warning btn-lg btn-block disabled" onclick="alert('Please Type Your Name Exactly as Above');">Please Type Your Name Exactly as Above</button>
148 <table><tr><td><img id='click_me2' name='click_me2' class='click_me' src="files/click_here.gif"></td><td><input class="form-control input-lg" name="signed_name_as_circulator" type="text" id="myTextb" onkeyup="addTextb()" required autofocus></td></tr></table>
149 </div>
150 </form>
151 </div>
152 </div>
153 </div>
154
155 <div class='col-sm-12'><img class="img-responsive" src='hard_copy.php'></div>
156 <?PHP if ($d['petition_jpg_page2'] != ''){ ?>
157 <div class='col-sm-12'><img class="img-responsive" src='<?PHP echo $d['petition_jpg_page2'];?>'></div>
158 <?PHP } ?>
159 <?PHP
160 if(isset($_POST['signed_name_as'])){
161 slack_general('petition.php ('.$d['petition_name'].') ('.$_POST['signed_name_as'].') ('.$_COOKIE['invite'].')','md-petition');
162 }else{
163 slack_general('petition.php ('.$d['petition_name'].') ('.$_COOKIE['invite'].')','md-petition');
164 }
165 include_once('footer.php');