living area

This commit is contained in:
2025-01-16 19:27:11 +08:00
parent 93cdab9424
commit 690d0cb74e
3 changed files with 25 additions and 4 deletions
+17 -3
View File
@@ -39,9 +39,23 @@
<input type="text" class="form-control" id="longitude" name="longitude">
</div>
</div>
<div class="mb-3">
<label for="guests" class="form-label">Guests</label>
<input type="number" class="form-control" id="guests" name="guests" value="1">
<div class="row">
<div class="col-md-3 mb-3">
<label for="guests" class="form-label">Guests</label>
<input type="number" class="form-control" id="guests" name="guests" value="1">
</div>
<div class="col-md-3 mb-3">
<label for="beds" class="form-label">Beds</label>
<input type="number" class="form-control" id="beds" name="beds" value="1">
</div>
<div class="col-md-3 mb-3">
<label for="rooms" class="form-label">Rooms</label>
<input type="number" class="form-control" id="rooms" name="rooms" value="1">
</div>
<div class="col-md-3 mb-3">
<label for="bathrooms" class="form-label">Bathrooms</label>
<input type="number" class="form-control" id="bathrooms" name="bathrooms" value="1">
</div>
</div>
<button type="submit" class="btn btn-primary w-100">Create</button>
</form>