blob: 6db2fb283f1fe64e8f2b0c6ce0b2d110dda7f624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<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>
<%= link_to "Start", start_activity_path(@activity), method: :post %>
|