Update presign.php
[clinton/MarylandElectronicPetitionSignature.git] / header.php
1 <?PHP
2 include_once('session.php');
3 if (isset($_GET['debug'])){
4 if ($_GET['debug'] == 'on'){
5 setcookie("debug", 'on');
6 header('Location: index.php');
7 }
8 if ($_GET['debug'] == 'off'){
9 setcookie("debug", 'off');
10 header('Location: index.php');
11 }
12 }
13 global $time_on_site;
14 if (empty($_COOKIE['start_time'])){
15 setcookie("start_time", time());
16 $time_on_site = 0;
17 }else{
18 $now = time();
19 $time_on_site = $now - $_COOKIE['start_time'];
20 }
21 ?>
22 <!DOCTYPE html>
23 <html lang="en">
24 <head>
25 <meta property="og:url" content="http://md-petition.com/index.php" />
26 <meta property="og:type" content="website" />
27 <meta property="og:title" content="Maryland Electronic Petition Software" />
28 <meta property="og:description" content="Socially Distant Petitions" />
29 <meta property="og:image" content="http://md-petition.com/files/maryland-flag-graphic.png" />
30
31 <!-- Global site tag (gtag.js) - Google Analytics -->
32 <script async src="https://www.googletagmanager.com/gtag/js?id=UA-165887820-1"></script>
33 <script>
34 window.dataLayer = window.dataLayer || [];
35 function gtag(){dataLayer.push(arguments);}
36 gtag('js', new Date());
37
38 gtag('config', 'UA-165887820-1');
39 </script>
40 <?PHP
41 include_once('/var/www/secure.php'); //outside webserver
42 presign(); // requires db connection
43 include_once('slack.php');
44 ?>
45 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
46 <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
47 <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
48 <title>MEPS - Maryland Eletronic Petition Software</title>
49 <style>
50 input:focus {
51 background-color: lightblue;
52 }
53 .click_me{
54 height:50px;
55 width:100px;
56 }
57 .not_me{
58 height:72px;
59 }
60 </style>
61 </head>
62 <body>
63 <div class="container-fluid">
64 <?PHP
65 if ($_COOKIE['invite'] != ''){
66 $invite = $petition->real_escape_string($_COOKIE['invite']);
67 $q = "select * from petitions where web_short_name = '$invite'";
68 $r = $petition->query($q);
69 $d = mysqli_fetch_array($r);
70 echo "<div class='row'><div class='col-sm-10' style='text-align:center;'><h1 style='text-align:center; background-color:$d[web_color];'>$d[petition_name]</h1></div></div>";
71 if ($d['social_phone'] != ''){
72 echo "<div class='row'><div class='col-sm-10' style='text-align:center;'><h3 style='text-align:center; background-color:$d[web_color];'>Support: <a href='tel:".$d['social_phone']."'>".$d['social_phone']."</a> <a href='mailto:".$d['social_email']."'>".$d['social_email']."</a></h3></div></div>";
73 }
74 }
75 ?>