allow links in slack
[clinton/MarylandElectronicPetitionSignature.git] / petition.php
CommitLineData
de92e95d
PM
1<?PHP
2include_once('header.php');
3if (isset($_POST['petition'])){
4 $id = $_POST['petition'];
70e2de61 5 setcookie("pID", $id);
de92e95d
PM
6 $q = "select * from petitions where petition_id = '$id'";
7 $r = $petition->query($q);
8 $d = mysqli_fetch_array($r);
4e6cf473 9 slack_general('OK POST: petition.php ('.$_COOKIE['invite'].')','md-petition');
beb29022
PM
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);
4e6cf473 15 slack_general('OK COOKIE: petition.php ('.$_COOKIE['invite'].')','md-petition');
beb29022 16}else{
63a18eab
PM
17 slack_general('MAJOR ERROR: petition.php ('.$_COOKIE['invite'].')','md-petition');
18 header('Location: reset.php');
19 die('Error #15');
de92e95d 20}
58e477ae 21setcookie("pJPG", $d['petition_jpg']);
de92e95d 22?>
98ce83b3
PM
23<script>
24 document.title = "MEPS - Sign <?PHP echo $d['petition_name'];?>";
55a06d6a
PM
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 });
98ce83b3 34});
98ce83b3 35</script>
9545d56d
PM
36<style>
37@font-face {
38 font-family: "myFirstFont";
32286a4c 39 src: url("files/Claston Script.ttf");
9545d56d
PM
40}
41.sig {
42 font-family: "myFirstFont";
e483b372 43 font-size: 60px;
9545d56d
PM
44}
45</style>
beb29022
PM
46<?PHP
47if (isset($_POST['signed_name_as'])){
48?>
49<script>
bff61df6 50 window.scrollTo(0,document.body.scrollHeight);
b3bdd4cc
PM
51 $(document).ready(function(){
52 window.scrollTo(0,document.body.scrollHeight);
53 $('#exampleModalLower').modal('show');
beb29022 54 });
532fd909 55 function addTextb()
beb29022 56 {
532fd909 57 document.getElementById('text2b').innerHTML = document.getElementById('myTextb').value;
a83d8a01 58 var string = document.getElementById('myTextb').value;
3c9412ec
PM
59 var res = string.toUpperCase();
60 var result = res.match(/<?PHP echo $_COOKIE['pNAME'];?>/i);
a83d8a01 61 if (result == "<?PHP echo $_COOKIE['pNAME'];?>"){
82d16fd5 62 document.getElementById("b2").style.display = "block";
1b3af1ab 63 document.getElementById("b2warn").style.display = "none";
cf52aee3 64 document.getElementById("click_me2").style.display = "none";
93abfb49 65 document.getElementById("form2").submit();
82d16fd5 66 //alert("Confirmed : " + result);
35fe03d7
PM
67 }else{
68 document.getElementById("b2").style.display = "none";
42117833 69 document.getElementById("b2warn").style.display = "block";
cf52aee3 70 document.getElementById("click_me2").style.display = "block";
a83d8a01 71 }
beb29022
PM
72 }
73</script>
74<?PHP
75}else{
76?>
56b829ee 77<script>
3ffbb5c9
PM
78 $(document).ready(function(){
79 $('#exampleModalCenter').modal('show');
80 });
398ca4df
PM
81 function addText()
82 {
83 document.getElementById('text2').innerHTML = document.getElementById('myText').value;
a83d8a01 84 var string = document.getElementById('myText').value;
3c9412ec
PM
85 var res = string.toUpperCase();
86 var result = res.match(/<?PHP echo $_COOKIE['pNAME'];?>/i);
a83d8a01 87 if (result == "<?PHP echo $_COOKIE['pNAME'];?>"){
82d16fd5 88 document.getElementById("b1").style.display = "block";
1b3af1ab 89 document.getElementById("b1warn").style.display = "none";
cf52aee3 90 document.getElementById("click_me1").style.display = "none";
93abfb49 91 document.getElementById("form1").submit();
82d16fd5 92 //alert("Confirmed : " + result);
35fe03d7
PM
93 }else{
94 document.getElementById("b1").style.display = "none";
1b3af1ab 95 document.getElementById("b1warn").style.display = "block";
cf52aee3 96 document.getElementById("click_me1").style.display = "block";
a83d8a01 97 }
398ca4df 98 }
56b829ee 99</script>
beb29022
PM
100<?PHP
101}
102?>
162b6ce2 103
beb29022 104<!-- TOP Modal -->
56b829ee 105<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
7f3ed8d1 106 <div class="modal-dialog" role="document">
56b829ee
PM
107 <div class="modal-content">
108 <div class="modal-header">
9632553d 109 <h1 class="modal-title" id="exampleModalLongTitle">Type Your Signature to Sign <?PHP echo $d['petition_name'];?></h1>
beb29022
PM
110 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
111 <span aria-hidden="true">&times;</span>
112 </button>
113 </div>
93abfb49 114 <form action='petition.php' method='POST' name='form1' id='form1'>
beb29022 115 <div class="modal-body">
9632553d 116 <h2><?PHP echo $d['petition_sign_text_box'];?></h2>
a759c471 117 <h3><?PHP echo $_COOKIE['pNAME'];?>, Please Sign Here</h3>
e9c7f2f2 118
beb29022
PM
119 </div>
120 <div class="modal-footer">
e9c7f2f2 121 <h1 id="text2" class="sig"></h1>
91f3c191 122 <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>
6183a905 123 <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>
abe8079b 124 <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>
beb29022
PM
125 </div>
126 </form>
127 </div>
128 </div>
129</div>
130
f56ddbd7 131<!-- Lower Modal -->
beb29022 132<div class="modal fade" id="exampleModalLower" tabindex="-1" role="dialog" aria-labelledby="exampleModalLowerTitle" aria-hidden="true">
7f3ed8d1 133 <div class="modal-dialog modal-dialog-centered" role="document">
beb29022
PM
134 <div class="modal-content">
135 <div class="modal-header">
9632553d 136 <h1 class="modal-title" id="exampleModalLongTitleLower">Type Your Signature to Sign as Circulator</h1>
56b829ee
PM
137 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
138 <span aria-hidden="true">&times;</span>
139 </button>
140 </div>
93abfb49 141 <form action='sign.php' method='POST' name='form2' id='form2'><input type='hidden' value='<?PHP echo $_POST['signed_name_as'];?>' name='signed_name_as'>
dab6c4a9 142 <div class="modal-body">
9632553d 143 <h2><?PHP echo $d['petition_circulator_text_box'];?></h2>
a759c471 144 <h3><?PHP echo $_COOKIE['pNAME'];?>, Please Sign Here</h3>
dab6c4a9
PM
145 </div>
146 <div class="modal-footer">
cbae90ff 147 <h1 id="text2b" class="sig"></h1>
91f3c191 148 <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>
6183a905 149 <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>
abe8079b 150 <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>
dab6c4a9
PM
151 </div>
152 </form>
56b829ee
PM
153 </div>
154 </div>
155</div>
beb29022 156
5f7975e1 157<div class='col-sm-12'><img class="img-responsive" src='hard_copy.php'></div>
36529d15
PM
158<?PHP if ($d['petition_jpg_page2'] != ''){ ?>
159 <div class='col-sm-12'><img class="img-responsive" src='<?PHP echo $d['petition_jpg_page2'];?>'></div>
160<?PHP } ?>
63a18eab
PM
161<?PHP
162if(isset($_POST['signed_name_as'])){
4140020b
PM
163 slack_general('petition.php ('.$d['petition_name'].') ('.$_POST['signed_name_as'].') ('.$_COOKIE['invite'].')','md-petition');
164}else{
165 slack_general('petition.php ('.$d['petition_name'].') ('.$_COOKIE['invite'].')','md-petition');
63a18eab
PM
166}
167include_once('footer.php');