disabled word suggestions inf input fields, fixes #31
This commit is contained in:
parent
b5931a8538
commit
1f404a846c
1 changed files with 3 additions and 3 deletions
|
@ -71,11 +71,11 @@
|
|||
</p>
|
||||
<p>
|
||||
<label for="url">URL:</label>
|
||||
<input class="button" type="text" name="url" id="url" value="" placeholder="http://example.com/tt-rss/" />
|
||||
<input class="button" type="text" name="url" id="url" value="" placeholder="http://example.com/tt-rss/" x-inputmode="verbatim" autocorrect="off" />
|
||||
<label for="un">Username:</label>
|
||||
<input class="button" type="text" name="user" id="un" value="" placeholder="username" />
|
||||
<input class="button" type="text" name="user" id="un" value="" placeholder="username" x-inputmode="verbatim" autocorrect="off" />
|
||||
<label for="pw">Password:</label>
|
||||
<input class="button" type="password" name="pass" id="pw" value="" placeholder="password" />
|
||||
<input class="button" type="password" name="pass" id="pw" value="" placeholder=" x-inputmode="verbatim" autocorrect="off" password" />
|
||||
</p>
|
||||
<p>
|
||||
<button class="button" type="submit">Sign in</button>
|
||||
|
|
Reference in a new issue