mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-29 08:28:39 +00:00
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:
parent
0b27969a22
commit
8ff956fcbf
4 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue