Add "this is my property" checkbox

This commit is contained in:
Eli Ribble 2026-01-30 16:10:17 +00:00
parent e7230eb3c2
commit 78ee0483d3
No known key found for this signature in database

View file

@ -454,10 +454,16 @@ function displaySelectedCoordinates(lngLat) {
<label for="owner-phone" class="form-label">Owner Phone</label>
<input type="tel" class="form-control" id="owner-phone" name="owner-phone">
</div>
<div class="col-md-12">
<div class="col-md-6 mb-3">
<label for="owner-email" class="form-label">Owner Email</label>
<input type="email" class="form-control" id="owner-email" name="owner-email">
</div>
<div class="col-md-6 mb-3 row">
<div class="form-check mt-4">
<input type="checkbox" class="form-check-input" id="property-ownership" name="property-ownership">
<label class="form-check-label" for="property-ownership">This is my property</label>
</div>
</div>
</div>
</div>
</div>