From 58ceec6d792cb5b49eadc8789c6a48e856b709e5 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 22 Jun 2020 19:30:42 -0700 Subject: [PATCH] IMP: stop autocompleting (#21) Fixes #14 --- lib/planner_web/live/landing_live.ex | 2 +- lib/planner_web/templates/task/form.html.eex | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/planner_web/live/landing_live.ex b/lib/planner_web/live/landing_live.ex index e25b484..65ee380 100644 --- a/lib/planner_web/live/landing_live.ex +++ b/lib/planner_web/live/landing_live.ex @@ -21,7 +21,7 @@ defmodule PlannerWeb.LandingLive do <%= f = form_for(@new_task_changeset, "#", [phx_submit: :save_new_task]) %>
- <%= text_input f, :value, placeholder: "add new task", class: "input" %> + <%= text_input f, :value, placeholder: "add new task", class: "input", autocomplete: "off" %>
<%= error_tag f, :value %>
diff --git a/lib/planner_web/templates/task/form.html.eex b/lib/planner_web/templates/task/form.html.eex index 4f1fa46..af6734f 100644 --- a/lib/planner_web/templates/task/form.html.eex +++ b/lib/planner_web/templates/task/form.html.eex @@ -8,7 +8,7 @@
- <%= textarea f, :value, required: true, class: "textarea", placeholder: "task" %> + <%= textarea f, :value, required: true, class: "textarea", placeholder: "task", autocomplete: "off" %>
<%= error_tag f, :value %>
@@ -18,7 +18,7 @@ due (YYYY-MM-DD HH:MM:SS) <% end %>
- <%= text_input f, :due_at, class: "input", placeholder: "YYYY-MM-DD HH:MM:SS" %> + <%= text_input f, :due_at, class: "input", placeholder: "YYYY-MM-DD HH:MM:SS", autocomplete: "off" %>
<%= error_tag f, :due_at %>