50 lines
1.0 KiB
HTML
50 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Would You Rather</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
</head>
|
|
<body>
|
|
|
|
<main class="page">
|
|
<nav class="site-nav">
|
|
<a href="{{ url_for('admin.dashboard') }}">Admin</a>
|
|
</nav>
|
|
|
|
{% if question %}
|
|
<h1>{{ question.question }}</h1>
|
|
|
|
<form action="{{ url_for('public.vote') }}" method="POST">
|
|
|
|
<input
|
|
type="hidden"
|
|
name="qid"
|
|
value="{{ question.id }}"
|
|
>
|
|
|
|
<button
|
|
type="submit"
|
|
name="vote"
|
|
value="A"
|
|
>
|
|
{{ question.option_a }}
|
|
</button>
|
|
|
|
<button
|
|
type="submit"
|
|
name="vote"
|
|
value="B"
|
|
>
|
|
{{ question.option_b }}
|
|
</button>
|
|
|
|
</form>
|
|
{% else %}
|
|
<h1>No question is scheduled yet.</h1>
|
|
<p>Check back soon.</p>
|
|
{% endif %}
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|