</button>
</div>
<div id="s2" style="display: none;" class="steper">
    <form method="post">
        <br/>
        <strong><?php 
_e("Select created and active polls", GFontsEngine::PLUGIN_SLUG);
?>
</strong><br/><br/>
        <select name="gf_poll_id" id="gf_poll_id" style="width: 200px;">
            <option value="0"><?php 
_e('-- select --', GFontsEngine::PLUGIN_SLUG);
?>
</option>
            <?php 
$Polls = GFontsDB::GetActivePolls();
foreach ($Polls as $poll) {
    echo '<option value="' . $poll->id . '">' . $poll->title . '</option>';
}
?>
        </select><br/>
        <strong><?php 
_e('Poll chart width', GFontsEngine::PLUGIN_SLUG);
?>
</strong><br/><br/><input type="text" id="gf_poll_width" value="450" style="width: 200px;"/><br/>
        <strong><?php 
_e('Poll chart height', GFontsEngine::PLUGIN_SLUG);
?>
</strong><br/><br/><input type="text" id="gf_poll_height" value="300" style="width: 200px;"/><br/>
        <br/>
        <strong><?php