Disabled autocomplete on search boxes (#337)

* Disabled autocomplete on search boxes

* Update ProjectLighthouse.Servers.Website/Pages/PhotosPage.cshtml

Co-authored-by: Josh <josh@slendy.pw>

* Update ProjectLighthouse.Servers.Website/Pages/ReportsPage.cshtml

Co-authored-by: Josh <josh@slendy.pw>

* Update ProjectLighthouse.Servers.Website/Pages/SlotsPage.cshtml

Co-authored-by: Josh <josh@slendy.pw>

* Update ProjectLighthouse.Servers.Website/Pages/UsersPage.cshtml

Co-authored-by: Josh <josh@slendy.pw>

* Github actions is annoying at times

Co-authored-by: Josh <josh@slendy.pw>
This commit is contained in:
Zaprit 2022-06-29 17:11:58 +01:00 committed by GitHub
commit 8ff956fcbf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@
<form action="/photos/0">
<div class="ui icon input">
<input type="text" name="name" placeholder="Search photos..." value="@Model.SearchValue">
<input type="text" autocomplete="off" name="name" placeholder="Search photos..." value="@Model.SearchValue">
<i class="search icon"></i>
</div>
</form>

View file

@ -11,7 +11,7 @@
<form action="/admin/reports/0">
<div class="ui icon input">
<input type="text" name="name" placeholder="Search reports..." value="@Model.SearchValue">
<input type="text" autocomplete="off" name="name" placeholder="Search reports..." value="@Model.SearchValue">
<i class="search icon"></i>
</div>
</form>

View file

@ -12,7 +12,7 @@
<form action="/slots/0">
<div class="ui icon input">
<input type="text" name="name" placeholder="Search levels..." value="@Model.SearchValue">
<input type="text" autocomplete="off" name="name" placeholder="Search levels..." value="@Model.SearchValue">
<i class="search icon"></i>
</div>
</form>

View file

@ -13,7 +13,7 @@
<form action="/users/0">
<div class="ui icon input">
<input type="text" name="name" placeholder="Search users..." value="@Model.SearchValue">
<input type="text" autocomplete="off" name="name" placeholder="Search users..." value="@Model.SearchValue">
<i class="search icon"></i>
</div>
</form>