Add clear buttons to text inputs

Skylar Ittner 4 years ago
parent 6c992578ba
commit b969819ebc

@ -28,6 +28,7 @@
<div class="item-title item-label">Number and Street</div>
<div class="item-input-wrap">
<input type="text" id="numberstreetinput" placeholder="1234 Example Rd" value="" autocomplete="off" autocorrect="off">
<span class="input-clear-button"></span>
</div>
</div>
</div>
@ -39,6 +40,7 @@
<div class="item-title item-label">City</div>
<div class="item-input-wrap">
<input type="text" id="cityinput" placeholder="City" value="" autocomplete="off" autocorrect="off">
<span class="input-clear-button"></span>
</div>
</div>
</div>
@ -47,6 +49,7 @@
<div class="item-title item-label">State</div>
<div class="item-input-wrap">
<input type="text" id="stateinput" placeholder="ST" value="" maxlength="2" autocomplete="off" autocorrect="off">
<span class="input-clear-button"></span>
</div>
</div>
</div>
@ -55,6 +58,7 @@
<div class="item-title item-label">ZIP</div>
<div class="item-input-wrap">
<input type="text" id="zipcodeinput" placeholder="12345" value="" autocomplete="off" autocorrect="off">
<span class="input-clear-button"></span>
</div>
</div>
</div>

Loading…
Cancel
Save