diff options
author | Leah (ctucx) <leah@ctu.cx> | 2020-10-17 14:18:39 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-10-17 16:17:10 +0200 |
commit | 8170ce5cd94162f53f4fab527355fe195100026e (patch) | |
tree | c0e00cbe8db0d1293df0b8dac3aaa9a03cc4648d /templates/add_journey.html.ep | |
parent | 5d5aa026c25a2b47875126f65dfa2c6d7c495f46 (diff) |
disable browser-autocompletion on station-inputs1.18.3
Diffstat (limited to 'templates/add_journey.html.ep')
-rw-r--r-- | templates/add_journey.html.ep | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/add_journey.html.ep b/templates/add_journey.html.ep index 777fdee..2e75b60 100644 --- a/templates/add_journey.html.ep +++ b/templates/add_journey.html.ep @@ -51,7 +51,7 @@ </div> <div class="row"> <div class="input-field col s12"> - %= text_field 'dep_station', id => 'dep_station', class => 'autocomplete validate', required => undef + %= text_field 'dep_station', id => 'dep_station', class => 'autocomplete validate', autocomplete => 'off', required => undef <label for="dep_station">Start (Name oder DS100)</label> </div> <div class="input-field col s12"> @@ -65,7 +65,7 @@ </div> <div class="row"> <div class="input-field col s12"> - %= text_field 'arr_station', id => 'arr_station', class => 'autocomplete validate', required => undef + %= text_field 'arr_station', id => 'arr_station', class => 'autocomplete validate', autocomplete => 'off', required => undef <label for="arr_station">Ziel (Name oder DS100)</label> </div> <div class="input-field col s12"> |