blob: 84c19a43d48d99c36a5ad299462998676cebfef5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<h1 class="text-2xl"><%= @activity.name %></h1>
<p><%= @activity.description %></p>
<div class="min-w-full my-2 px-1 overflow-auto text-sm border-2 border-gray-800 rounded"
style="height: 75px" id="result_output">
</div>
<div id="result_controls">
<%= render "timer" %>
</div>
<%= form_with url: start_activity_path do |f| %>
<%= f.hidden_field :id, value: @activity.id %>
<%= f.submit "Start" %>
<% end %>
|