56 lines
1.7 KiB
HTML
56 lines
1.7 KiB
HTML
<div class="modal" role="dialog">
|
|
<div class="modal-background"></div>
|
|
<div class="modal-card">
|
|
<header class="modal-card-head">
|
|
<h3 class="modal-card-title">Edit Quantity</h3>
|
|
<button
|
|
class="delete is-close-modal-button"
|
|
aria-label="close"
|
|
type="button"
|
|
></button>
|
|
</header>
|
|
<section class="modal-card-body">
|
|
<form id="form--lotOccupancyFeeQuantity">
|
|
<input id="lotOccupancyFeeQuantity--lotOccupancyId" name="lotOccupancyId" type="hidden" />
|
|
<input id="lotOccupancyFeeQuantity--feeId" name="feeId" type="hidden" />
|
|
<label class="label" for="lotOccupancyFeeQuantity--quantity"
|
|
>Quantity</label
|
|
>
|
|
<div class="field has-addons">
|
|
<div class="control is-expanded">
|
|
<input
|
|
class="input"
|
|
id="lotOccupancyFeeQuantity--quantity"
|
|
name="quantity"
|
|
type="number"
|
|
value="1"
|
|
min="0.1"
|
|
max="999.9"
|
|
step="0.1"
|
|
required
|
|
onwheel="return false"
|
|
/>
|
|
</div>
|
|
<div class="control">
|
|
<span
|
|
class="button is-static"
|
|
id="lotOccupancyFeeQuantity--quantityUnit"
|
|
></span>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
<footer class="modal-card-foot justify-right">
|
|
<button
|
|
class="button is-success"
|
|
type="submit"
|
|
form="form--lotOccupancyFeeQuantity"
|
|
>
|
|
<span class="icon"><i class="fas fa-save" aria-hidden="true"></i></span>
|
|
<span>Update Quantity</span>
|
|
</button>
|
|
<button class="button is-close-modal-button" type="button">Cancel</button>
|
|
</footer>
|
|
</div>
|
|
</div>
|