diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-10-04 12:57:05 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-10-04 12:57:05 +0100 |
commit | 834567d39ee64b3e352c9f30a522d017d74e7239 (patch) | |
tree | b27f66d87c99084140285f151a260b2fdd6055d3 /templates/web/base/admin/users.html | |
parent | 163c65cf86a8743c5242810522eafdb0d76c8aad (diff) |
Apply form-control class to some more inputs.
Diffstat (limited to 'templates/web/base/admin/users.html')
-rw-r--r-- | templates/web/base/admin/users.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/web/base/admin/users.html b/templates/web/base/admin/users.html index dfff77ee6..757046bcf 100644 --- a/templates/web/base/admin/users.html +++ b/templates/web/base/admin/users.html @@ -5,7 +5,8 @@ [% loc("User search finds matches in users' names and email addresses.") %] </div> <form method="get" action="[% c.uri_for('users') %]" enctype="application/x-www-form-urlencoded" accept-charset="utf-8"> - <p><label for="search">[% loc('Search:') %]</label> <input type="text" name="search" size="30" id="search" value="[% searched | html %]"> + <p><label for="search">[% loc('Search:') %]</label> + <input class="form-control" type="text" name="search" size="30" id="search" value="[% searched | html %]"> </form> [% IF users.size %] |