diff options
Diffstat (limited to 'views')
| -rw-r--r-- | views/hootstream/hootform.ejs | 2 | ||||
| -rw-r--r-- | views/pages/login.ejs | 2 | ||||
| -rw-r--r-- | views/partials/hootbox.ejs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/views/hootstream/hootform.ejs b/views/hootstream/hootform.ejs index 2dbad9e..49db5b6 100644 --- a/views/hootstream/hootform.ejs +++ b/views/hootstream/hootform.ejs @@ -1,6 +1,6 @@ <div id="hootform"> <form autocomplete="off"> - <input type="text" name="comment" autocomplete="off" required> + <input type="text" name="comment" autocomplete="off" autocapitalize="off" required> <button class="hoot"><%= hoot_text %></button> </form> <div class="errors"></div> diff --git a/views/pages/login.ejs b/views/pages/login.ejs index c7d4ea2..78af763 100644 --- a/views/pages/login.ejs +++ b/views/pages/login.ejs @@ -4,7 +4,7 @@ <form> <div> <label for="username">username</label> - <input type="text" id="login-username" name="username" autocapitalize=off> + <input type="text" id="login-username" name="username" autocapitalize="off" autofocus> </div> <div> diff --git a/views/partials/hootbox.ejs b/views/partials/hootbox.ejs index 826b89a..7dbfcc2 100644 --- a/views/partials/hootbox.ejs +++ b/views/partials/hootbox.ejs @@ -1,6 +1,6 @@ <div class="bluebox" id="hootbox"> <form autocomplete="off"> - <input type="text" name="comment" autocomplete="off"> + <input type="text" name="comment" autocomplete="off" autocapitalize="off"> <button class="hoot"><%= hoot_text %></button> <div class="errors"></div> </form> |
