Files
TaskTracker/TaskTracker.Api/Pages/Partials/_CreateTaskForm.cshtml
AJ Isaacs e34c5d561f feat(web): add Board page with Kanban columns and task cards
Server-rendered Kanban board with 4 status columns (Pending, Active,
Paused, Completed), task cards with category colors and elapsed time,
filter bar with category chips and subtask toggle, and inline create
task form. All handlers support htmx partial updates for status
transitions (start, pause, resume, complete, abandon, create).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-01 22:17:45 -05:00

12 lines
321 B
Plaintext

<form hx-post="/board?handler=CreateTask"
hx-target="#board-content"
hx-select="#board-content"
hx-swap="outerHTML"
class="create-task-form mt-2">
<input type="text"
name="title"
placeholder="New task..."
class="input"
autocomplete="off" />
</form>