Disable spellcheck on text input

This commit is contained in:
bergware
2021-12-20 21:55:53 +01:00
parent 667cbb7580
commit cece662c1e
8 changed files with 23 additions and 24 deletions
+1 -1
View File
@@ -358,7 +358,7 @@ $theme_dark = in_array($display['theme'],['black','gray']);
<form action="/login" method="POST">
<p>
<input name="username" type="text" placeholder="<?=_('Username')?>" autocapitalize="none" autocomplete="off" autofocus required>
<input name="username" type="text" placeholder="<?=_('Username')?>" autocapitalize="none" autocomplete="off" spellcheck="false" autofocus required>
<input name="password" type="password" placeholder="<?=_('Password')?>" required>
</p>
<?if ($error) echo "<p class='error'>$error</p>";?>