diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-05-27 21:36:58 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-05-27 21:36:58 +0100 |
commit | 5d944d79d36ca380a67122e9eb306ad223b6ad2a (patch) | |
tree | 393cdcee4b09e3f7dcdc47e4a4431600426eb093 | |
parent | ca7708437b8cdb5f5719460decc83e22cac5bb68 (diff) | |
download | cheatdb-5d944d79d36ca380a67122e9eb306ad223b6ad2a.tar.xz |
Improve placeholder text
-rw-r--r-- | app/templates/macros/forms.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/templates/macros/forms.html b/app/templates/macros/forms.html index 940c4a2..7700fe2 100644 --- a/app/templates/macros/forms.html +++ b/app/templates/macros/forms.html @@ -46,7 +46,7 @@ <label for="{{ field.id }}" class="control-label">{{ label|safe }}</label> {% endif %} <div class="metapackage_selector bulletselector"> - <input type="text" placeholder="Start typing to see suggestions"> + <input type="text" placeholder="Comma-seperated values"> <div class="clearboth"></div> </div> {{ field(class_='form-control', **kwargs) }} @@ -65,7 +65,7 @@ <label for="{{ field.id }}" class="control-label">{{ label|safe }}</label> {% endif %} <div class="deps_selector bulletselector"> - <input type="text" placeholder="Start typing to see suggestions"> + <input type="text" placeholder="Comma-seperated values"> <div class="clearboth"></div> </div> {{ field(class_='form-control', **kwargs) }} |