拒绝autocomplete
This commit is contained in:
parent
c104de8628
commit
2a92e6a8c1
@ -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",
|
||||
|
@ -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")
|
||||
|
@ -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">
|
||||
|
@ -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">
|
||||
是否结束维护
|
||||
|
Loading…
x
Reference in New Issue
Block a user