Merge pull request #205 from Safelite/feature/CSR-231
WIP suppress Chrome Autocomplete
This commit is contained in:
commit
6ca9bea993
1 changed files with 43 additions and 38 deletions
|
|
@ -5,46 +5,51 @@
|
||||||
<vehicleBanner ref="vehicleBanner" :displayGenericVehicleImage=true />
|
<vehicleBanner ref="vehicleBanner" :displayGenericVehicleImage=true />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row my-4">
|
<form>
|
||||||
<div class="col">
|
<div class="row my-4">
|
||||||
<label for="autocomplete">Street address</label>
|
<div class="col">
|
||||||
<input ref="autocomplete"
|
<label for="autocomplete">Street address</label>
|
||||||
id="autocomplete"
|
<input ref="autocomplete"
|
||||||
placeholder="Search"
|
id="autocomplete"
|
||||||
class="form-control search-location"
|
placeholder="Search"
|
||||||
type="text"
|
class="form-control search-location"
|
||||||
autocomplete="off" />
|
type="text"
|
||||||
|
autocomplete="off" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</form>
|
||||||
<div v-show="showAddressFields" class="row my-4">
|
<form>
|
||||||
<div class="col">
|
<div v-show="showAddressFields" class="row my-4">
|
||||||
<label for="city">City</label>
|
<div class="col">
|
||||||
<input ref="city"
|
<label for="city">City</label>
|
||||||
id="city"
|
<input ref="city"
|
||||||
class="form-control"
|
id="city"
|
||||||
type="text"
|
class="form-control"
|
||||||
autocomplete="off" />
|
type="text"
|
||||||
|
autocomplete="off" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</form>
|
||||||
<div v-show="showAddressFields" class="row my-4">
|
<form>
|
||||||
<div class="col-6">
|
<div v-show="showAddressFields" class="row my-4">
|
||||||
<label for="state">State</label>
|
<div class="col-6">
|
||||||
<input ref="state"
|
<label for="state">State</label>
|
||||||
id="state"
|
<input ref="state"
|
||||||
class="form-control"
|
id="state"
|
||||||
type="text"
|
class="form-control"
|
||||||
autocomplete="off" />
|
type="text"
|
||||||
|
autocomplete="off" />
|
||||||
|
</div>
|
||||||
|
<div class="col-6">
|
||||||
|
<label for="zip">Zip</label>
|
||||||
|
<input ref="zip"
|
||||||
|
id="zip"
|
||||||
|
class="form-control"
|
||||||
|
type="text"
|
||||||
|
autocomplete="off" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-6">
|
</form>
|
||||||
<label for="zip">Zip</label>
|
|
||||||
<input ref="zip"
|
|
||||||
id="zip"
|
|
||||||
class="form-control"
|
|
||||||
type="text"
|
|
||||||
autocomplete="off" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div v-show="displayVerificationWarning" class="row my-4">
|
<div v-show="displayVerificationWarning" class="row my-4">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<span style="color: red;">An accurate match may not have have been located. Please verify your address before continuing</span>
|
<span style="color: red;">An accurate match may not have have been located. Please verify your address before continuing</span>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue