IMP: stop autocompleting (#21)

Fixes #14
This commit is contained in:
Matthew Ryan Dillon 2020-06-22 19:30:42 -07:00 committed by GitHub
parent 7cb0ec35f6
commit 58ceec6d79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -21,7 +21,7 @@ defmodule PlannerWeb.LandingLive do
<%= f = form_for(@new_task_changeset, "#", [phx_submit: :save_new_task]) %>
<div class="field">
<div class="control">
<%= text_input f, :value, placeholder: "add new task", class: "input" %>
<%= text_input f, :value, placeholder: "add new task", class: "input", autocomplete: "off" %>
</div>
<%= error_tag f, :value %>
</div>

View file

@ -8,7 +8,7 @@
<div class="field">
<div class="control">
<%= textarea f, :value, required: true, class: "textarea", placeholder: "task" %>
<%= textarea f, :value, required: true, class: "textarea", placeholder: "task", autocomplete: "off" %>
</div>
<%= error_tag f, :value %>
</div>
@ -18,7 +18,7 @@
due (YYYY-MM-DD HH:MM:SS)
<% end %>
<div class="control">
<%= 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" %>
</div>
<%= error_tag f, :due_at %>
</div>