Make sure form elements are not spell checked.

This commit is contained in:
James Cole
2022-10-23 17:36:26 +02:00
parent 2f66315416
commit d4738b21ab
26 changed files with 45 additions and 41 deletions

View File

@@ -101,7 +101,7 @@
<section class="sidebar">
<form action="{{ route('search.index') }}" method="get" class="sidebar-form">
<div class="input-group">
<input autocomplete="off" type="text" name="search" class="form-control" placeholder="{{ 'searchPlaceholder'|_ }}" value="{{ query }}"/>
<input autocomplete="off" type="text" name="search" class="form-control" placeholder="{{ 'searchPlaceholder'|_ }}" value="{{ query }}" spellcheck="false"/>
<span class="input-group-btn">
<button type='submit' name='go' id='search-btn' class="btn btn-flat"><span class="fa fa-search"></span></button>
</span>