<.header> ルームを作成 <:subtitle>投票の設定を入力してください。
<.form for={@form} action={~p"/create"} method="post" id="create-room-form"> <.input field={@form[:name]} type="text" label="ルーム名" placeholder="例:今日のランチ投票" required /> <.input field={@form[:votes_per_user]} type="number" label="一人あたりの投票数" min="1" max="50" required />
追加オプション
<.input field={@form[:grouping_mode]} type="checkbox" label="グルーピングモードを有効にする(班分けアプリになります)" /> <.input field={@form[:leader_threshold]} type="number" label="リーダーになるのに必要な票数(グルーピングモードのときのみ使用)" min="1" max="50" /> <.input field={@form[:closes_at_local]} type="datetime-local" label="投票終了日時(任意・日本時間)" />

指定すると、その日時に自動的に投票が終了します。

<.link navigate={~p"/"} class="btn btn-ghost btn-sm"> 戻る