forked from SteamLUG/steamlug.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolls.php
22 lines (21 loc) · 870 Bytes
/
polls.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
$pageTitle = "Polls";
include_once('includes/header.php');
include_once('includes/functions_poll.php');
?>
<h1 class="text-center">Community Polls</h1>
<article class="panel panel-default">
<header class="panel-heading">
<h3 class="panel-title">About</h3>
</header>
<div class="panel-body">
<p>We're launching a new polling feature for SteamLUG.org, which will allow us to get better community input on things like events, SteamLUG Cast topics, future projects and more!</p>
<?php
if( !isset($_SESSION['u']) ) {
echo "<p>To vote, you need to be signed in via Steam using the button in the menu, and you must be a member of our <a href=\"http://steamcommunity.com/groups/steamlug/\">Steam group</a>.</p>";
}
?>
</div>
</article>
<?php showCurrentPolls(); ?>
<?php include_once('includes/footer.php');