summaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
authorjulian laplace <julescarbon@gmail.com>2022-10-31 12:00:16 +0100
committerjulian laplace <julescarbon@gmail.com>2022-10-31 12:00:16 +0100
commit341393513dc3622b6d59e5512a7ab11d82c7e6c3 (patch)
tree25eac45533edbf406f6afe7adcb707e7ad9726cd /views
parenta2bf5ad8689fb0f9c662cf2bb17a6d4890aba349 (diff)
redirect to /stream on mobile
Diffstat (limited to 'views')
-rw-r--r--views/hootstream/hootform.ejs2
-rw-r--r--views/pages/login.ejs2
-rw-r--r--views/partials/hootbox.ejs2
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>