1
0
mirror of https://git.cant.at/Madeorsk/PollVerlaine synced 2024-09-30 19:18:44 +02:00
PollVerlaine/views/poll.php

14 lines
595 B
PHP
Raw Normal View History

<h1 class="poll"><?= $poll->title ?></h1>
2018-08-12 14:30:38 +02:00
<main>
2018-08-13 14:51:21 +02:00
<form action="/polls/<?= $poll->id ?>/vote" method="POST" id="poll">
<?php foreach ($poll->options as $id => $option): ?>
<div class="option">
2018-08-13 14:51:21 +02:00
<input type="radio" name="options" value="<?= $id ?>" id="option-<?= $id ?>" />
<label for="option-<?= $id ?>" class="check"></label>
<label for="option-<?= $id ?>"><?= $option->label ?></label>
</div>
<?php endforeach; ?>
<input type="submit" value="Vote" />
</form>
<a class="button margin" href="/polls/<?= $poll->id ?>/results">Jump to results</a>
2018-08-12 14:30:38 +02:00
</main>