拒绝autocomplete

This commit is contained in:
Jerry Yan 2022-11-01 15:30:04 +08:00
parent c104de8628
commit 2a92e6a8c1
Signed by: q792602257
GPG Key ID: D070F653AF6C0004
4 changed files with 8 additions and 7 deletions

View File

@ -7,6 +7,7 @@
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"ext-mbstring": "*",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.0.1",
"laravel/framework": "^8.75",

View File

@ -27,7 +27,7 @@
@endif
<label class="block my-2" id="broadcast_select">
复制的名称
<input class="form-input border-0 border-b-2 w-full" type="text" name="name" value="{{ old('name') }}">
<input class="form-input border-0 border-b-2 w-full" autocomplete="off" type="text" name="name" value="{{ old('name') }}">
<input class="form-input border-0 border-b-2 w-full" id="broadcast_id" type="hidden" name="id" value="{{ old('id') }}">
</label>
@include("common.form_error")

View File

@ -28,11 +28,11 @@
@endif
<label class="block my-2">
追加内容(点播可不填)
<input class="form-input border-0 border-b-2 w-full" type="text" name="name" value="{{ old('name', $append->name) }}">
<input class="form-input border-0 border-b-2 w-full" autocomplete="off" type="text" name="name" value="{{ old('name', $append->name) }}">
</label>
<label class="block my-2" id="from_select">
点播老板
<input class="form-input border-0 border-b-2 w-full" type="text" name="from" value="{{ old('from', $append->from) }}">
<input class="form-input border-0 border-b-2 w-full" autocomplete="off" type="text" name="from" value="{{ old('from', $append->from) }}">
</label>
<label class="block my-2">
是否点播(不是追加)
@ -44,7 +44,7 @@
</label>
<label class="block my-2">
补充说明
<input class="form-input border-0 border-b-2 w-full" type="text" name="append" value="{{ old('append', $append->append) }}">
<input class="form-input border-0 border-b-2 w-full" autocomplete="off" type="text" name="append" value="{{ old('append', $append->append) }}">
</label>
@include("common.form_error")
<div class="block my-2 text-center">

View File

@ -11,15 +11,15 @@
<input type="hidden" name="id" value="{{$program->id}}">
<label class="block my-2">
节目名称
<input class="form-input border-0 border-b-2 w-full" type="text" required name="name" value="{{ old("name", $program->name) }}">
<input class="form-input border-0 border-b-2 w-full" autocomplete="off" type="text" required name="name" value="{{ old("name", $program->name) }}">
</label>
<label class="block my-2">
节目难度
<input class="form-input border-0 border-b-2 w-full" type="text" name="difficulty" value="{{ old("difficulty", $program->difficulty) }}">
<input class="form-input border-0 border-b-2 w-full" autocomplete="off" type="text" name="difficulty" value="{{ old("difficulty", $program->difficulty) }}">
</label>
<label class="block my-2">
节目要求
<input class="form-input border-0 border-b-2 w-full" type="text" name="desc" value="{{ old("desc", $program->desc) }}">
<input class="form-input border-0 border-b-2 w-full" autocomplete="off" type="text" name="desc" value="{{ old("desc", $program->desc) }}">
</label>
<label class="block my-2">
是否结束维护