Stop autocompleting the chat input

This commit is contained in:
Neale Pickett 2020-01-16 20:24:02 -07:00
parent 0fdc23f923
commit 34d40eaf58
1 changed files with 2 additions and 2 deletions

View File

@ -11,9 +11,9 @@
<form> <form>
<input name="forum" value="" type="hidden"> <input name="forum" value="" type="hidden">
<input name="who" placeholder="name"> <input name="who" placeholder="name">
<input name="text" placeholder="Message here..."> <input name="text" autocomplete="off" placeholder="Message here...">
<input type="submit" value="send"> <input type="submit" value="send">
</form> </form>
<div id="chattoast"></div> <div id="chattoast"></div>
</body> </body>
</html> </html>