summaryrefslogtreecommitdiff
path: root/app/views/activities/show.html.erb
blob: c9c6d25d00ae66412be4b66404062cd26f92d498 (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: 30rem;" 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 %>