Add files via upload
[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 (invite:'.$_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 (invite:'.$_COOKIE['invite'].')','md-petition');
16 }else{
17 slack_general('MAJOR ERROR (invite:'.$_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 string = string.replace(/ +(?= )/g,'');
60 var res = string.toUpperCase();
61 var res = res.replace(/ +(?= )/g,'');
62 var result = res.match(/<?PHP echo $_COOKIE['pNAME'];?>/i);
63 if (result == "<?PHP echo $_COOKIE['pNAME'];?>"){
64 document.getElementById("b2").style.display = "block";
65 document.getElementById("b2warn").style.display = "none";
66 document.getElementById("click_me2").style.display = "none";
67 document.getElementById("form2").submit();
68 //alert("Confirmed : " + result);
69 }else{
70 document.getElementById("b2").style.display = "none";
71 document.getElementById("b2warn").style.display = "block";
72 document.getElementById("click_me2").style.display = "block";
73 }
74 }
75 </script>
76 <?PHP
77 }else{
78 ?>
79 <script>
80 $(document).ready(function(){
81 $('#exampleModalCenter').modal('show');
82 });
83 function addText()
84 {
85 document.getElementById('text2').innerHTML = document.getElementById('myText').value;
86 var string = document.getElementById('myText').value;
87 var string = string.replace(/ +(?= )/g,'');
88 var res = string.toUpperCase();
89 var res = res.replace(/ +(?= )/g,'');
90 var result = res.match(/<?PHP echo $_COOKIE['pNAME'];?>/i);
91 if (result == "<?PHP echo $_COOKIE['pNAME'];?>"){
92 document.getElementById("b1").style.display = "block";
93 document.getElementById("b1warn").style.display = "none";
94 document.getElementById("click_me1").style.display = "none";
95 document.getElementById("form1").submit();
96 //alert("Confirmed : " + result);
97 }else{
98 document.getElementById("b1").style.display = "none";
99 document.getElementById("b1warn").style.display = "block";
100 document.getElementById("click_me1").style.display = "block";
101 }
102 }
103 </script>
104 <?PHP
105 }
106 ?>
107
108 <!-- TOP Modal -->
109 <div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
110 <div class="modal-dialog" role="document">
111 <div class="modal-content">
112 <div class="modal-header">
113 <h1 class="modal-title" id="exampleModalLongTitle">Type Your Signature to Sign <?PHP echo $d['petition_name'];?></h1>
114 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
115 <span aria-hidden="true">&times;</span>
116 </button>
117 </div>
118 <form action='petition.php' method='POST' name='form1' id='form1'>
119 <div class="modal-body">
120 <h2><?PHP echo $d['petition_sign_text_box'];?></h2>
121 <h3><?PHP echo $_COOKIE['pNAME'];?>, Please Sign Here</h3>
122
123 </div>
124 <div class="modal-footer">
125 <h1 id="text2" class="sig"></h1>
126 <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>
127 <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>
128 <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>
129 </div>
130 </form>
131 </div>
132 </div>
133 </div>
134
135 <!-- Lower Modal -->
136 <div class="modal fade" id="exampleModalLower" tabindex="-1" role="dialog" aria-labelledby="exampleModalLowerTitle" aria-hidden="true">
137 <div class="modal-dialog modal-dialog-centered" role="document">
138 <div class="modal-content">
139 <div class="modal-header">
140 <h1 class="modal-title" id="exampleModalLongTitleLower">Type Your Signature to Sign as Circulator</h1>
141 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
142 <span aria-hidden="true">&times;</span>
143 </button>
144 </div>
145 <form action='presign.php' method='POST' name='form2' id='form2'><input type='hidden' value='<?PHP echo $_POST['signed_name_as'];?>' name='signed_name_as'>
146 <div class="modal-body">
147 <h2><?PHP echo $d['petition_circulator_text_box'];?></h2>
148 <h3><?PHP echo $_COOKIE['pNAME'];?>, Please Sign Here</h3>
149 </div>
150 <div class="modal-footer">
151 <h1 id="text2b" class="sig"></h1>
152 <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>
153 <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>
154 <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>
155 </div>
156 </form>
157 </div>
158 </div>
159 </div>
160
161 <div class='col-sm-12'><img class="img-responsive" src='hard_copy.php'></div>
162 <?PHP if ($d['petition_jpg_page2'] != ''){ ?>
163 <div class='col-sm-12'><img class="img-responsive" src='<?PHP echo $d['petition_jpg_page2'];?>'></div>
164 <?PHP } ?>
165 <?PHP
166 if(isset($_POST['signed_name_as'])){
167 slack_general('*Step 2* ('.$d['petition_name'].') ('.$_POST['signed_name_as'].') ('.$_COOKIE['invite'].')','md-petition');
168 }else{
169 slack_general('*Step 1* ('.$d['petition_name'].') ('.$_COOKIE['invite'].')','md-petition');
170 }
171 include_once('footer.php');