48 lines
1.5 KiB
Text
48 lines
1.5 KiB
Text
<% if !htmx {%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>zettoIT ARS</title>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="/static/charts.min.css">
|
|
<link rel="stylesheet" href="/static/pico.min.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
<script src="/static/chart.js"></script>
|
|
<main class="container" hx-sse="connect:/<%= id %>/view/events swap:message">
|
|
<% } %>
|
|
<h1>zettoIT ARS</h1>
|
|
|
|
<% if let ViewerState::Answering{ inner_body } = state { %>
|
|
<%- inner_body %>
|
|
|
|
<button hx-post="" class="outline">Show correct Answer</button>
|
|
|
|
<% } else if let ViewerState::Result{ last_question, inner_body} = state { %>
|
|
|
|
<%- inner_body %>
|
|
|
|
<% if last_question { %>
|
|
<button hx-post="" class="outline">End Quiz</button>
|
|
<% } else { %>
|
|
<button hx-post="" class="outline">Next Question</button>
|
|
<% } %>
|
|
|
|
<% } else if let ViewerState::NotStarted((player, qrcode, url)) = state { %>
|
|
</article>
|
|
<center><%- qrcode %></center>
|
|
<center><%= url %></center>
|
|
<button hx-post="" class="outline">Start Quiz with <b><%= player %></b> Players</button>
|
|
</article>
|
|
<% } else {%>
|
|
<article>
|
|
The Quiz finished. You can close this tab now.
|
|
</article>
|
|
<% } %>
|
|
<% if !htmx { %>
|
|
</main>
|
|
<script src="/static/htmx.min.js"></script>
|
|
</body>
|
|
</html>
|
|
<% } %>
|