Пример #1
0
<form method="POST" role="form" class="form-horizontal">
  <?php 
echo csrf_token_input();
?>
  <table class="table table-striped candidates_table">
    <thead>
      <tr>
        <th>#</th>
        <th>ПІБ</th>
        <th>ІГС</th>
        <th>Досьє</th>
      </tr>
    </thead>
    <tbody>
    <?php 
echo candidates_table(true);
?>
    </tbody>
  </table>
  <br>
  <div>
    <a href="index.php" class="btn btn-default">&laquo; На початок</a>
    <button type="submit" class="btn btn-danger">Проголосувати &raquo;</button>
  </div>
</form>

<script>
  window.max_selected_limit = <?php 
echo get_selected_limit();
?>
;
Пример #2
0
    Протокол голосування з частково знеособленними данними доступний <a href="public/report.txt">публічно</a>.
</p>

<br>

<div class="candidates_list" style="display:none">
  <h2>Список кандидатів у Раду громадського контролю</h2>
  <table class="table table-striped candidates_table">
    <thead>
      <tr>
        <th>ПІБ</th>
        <th>ІГС</th>
        <th>Досьє</th>
      </tr>
    </thead>
    <tbody>
    <?php 
echo candidates_table();
?>
    </tbody>
  </table>
  <br>
</div>

<div class="well text-center">
    <a href="#" class="btn btn-lg btn-default show-candidates">Cписок кандидатів</a>
    <a href="step1.php" class="btn btn-lg btn-primary">Розпочати голосування</a>
</div>

<?php 
include "footer.php";