From aa62cc7349fd241fd89cef91c0628090fbb413ea Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Tue, 13 Jan 2026 13:22:18 -0600 Subject: [PATCH] Move Create Agent buttons below input field - Changed form layout from horizontal to vertical - Agent name input now on its own line - Create Agent and Cancel buttons on line below with gap-3 spacing --- .../live/agent_live/index.html.heex | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/lib/towerops_web/live/agent_live/index.html.heex b/lib/towerops_web/live/agent_live/index.html.heex index 913b1c63..1325c7ed 100644 --- a/lib/towerops_web/live/agent_live/index.html.heex +++ b/lib/towerops_web/live/agent_live/index.html.heex @@ -21,26 +21,26 @@ Create New Agent <.form for={@agent_form} phx-submit="create_agent"> -
-
- <.input - field={@agent_form[:name]} - type="text" - label="Agent Name" - placeholder="e.g., Datacenter A" - required - /> +
+ <.input + field={@agent_form[:name]} + type="text" + label="Agent Name" + placeholder="e.g., Datacenter A" + required + /> +
+ <.button type="submit" variant="primary"> + Create Agent + +
- <.button type="submit" variant="primary"> - Create Agent - -